- or download this
#!/usr/bin/perl
#
...
New::MyModule::printer();
Old::MyModule::printer();
- or download this
package New::MyModule;
do 'New/MyModule.pl' or die "New/MyModule.pl: $!";
1;
- or download this
package Old::MyModule;
do 'New/MyModule.pl' or die "New/MyModule.pl: $!";
1;
- or download this
sub printer {
print "here we are in " . __PACKAGE__ . "\n";
}
1;
- or download this
package New::MyModule;
...
}
1;
- or download this
package Old::MyModule;
...
die "$file: did not end with a true value" unless($result);
1;