- or download this
package myMod;
use strict;
...
sub tryIt { print "We did it!!\n\n"; }
1;
- or download this
use myMod;
BEGIN { push @ISA, "/home/jptxs"; }
tryIt();
- or download this
/home/jptxs > perl -w getMyMod
Use of reserved word "our" is deprecated at myMod.pm line 5.
...
Global symbol "@EXPORT" requires explicit package name at myMod.pm lin
+e 6.
syntax error at myMod.pm line 5, near "our @ISA "
BEGIN failed--compilation aborted at getMyMod line 1.
- or download this
/home/jptxs > perl -w getMyMod
Global symbol "@ISA" requires explicit package name at myMod.pm line 5
+.
Global symbol "@EXPORT" requires explicit package name at myMod.pm lin
+e 6.
Compilation failed in require at getMyMod line 1.
BEGIN failed--compilation aborted at getMyMod line 1.