in reply to Re^2: Using a module under VMS
in thread Solved - Using a module under VMS
Hi , another AM with another suggestion, try like this
perl -Ivmsdirhere -MModulename -e 1
If you can't get that working, try
require 'vmsdirhere/Modulename.pm';
An error should pop, and you should be able to figure it out ... do you have use feature qw/ say /; or equivalent (if thats the issue)?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Using a module under VMS
by Anonymous Monk on May 28, 2015 at 09:21 UTC | |
|
Re^4: Using a module under VMS
by Laurent_R (Canon) on May 28, 2015 at 09:32 UTC |