- or download this
use subdir::Somemodule qw(%myhash);
print join ("\n", keys %myhash), "\n";
__END__
- or download this
$>perl -I. import_test.pl
- or download this
use subdir::Somemodule;
import Somemodule qw(%myhash);
print join ("\n", keys %myhash), "\n";
__END__
- or download this
# delete the 'subdir' from the use
#
use Somemodule qw(%myhash);
print join ("\n", keys %myhash), "\n";
__END__
- or download this
$> perl -I 'subdir' importest.pl
- or download this
This is perl, v5.6.1 built for MSWin32-x86-multi-thread