- or download this
$ cat MyClass.pm
- or download this
use strict;
use warnings;
...
};
1;
- or download this
$ cat script.pl
- or download this
use lib '.';
use MyClass;
...
$bar = foo;
print "$bar\n";
- or download this
$ perl script.pl
- or download this
42
- or download this
$ cat MyClass2.pm
- or download this
use strict;
use warnings;
...
};
1;
- or download this
$ cat script2.pl
- or download this
use lib '.';
use MyClass2;
...
$bar = foo;
print "$bar\n";
- or download this
$ perl script2.pl
- or download this
Global symbol "$bar" requires explicit package name (did you forget to
+ declare "my $bar"?) at script2.pl line 4.
Global symbol "$bar" requires explicit package name (did you forget to
+ declare "my $bar"?) at script2.pl line 6.
Execution of script2.pl aborted due to compilation errors.