- or download this
package MyStandardModules;
...
eval "package $dest_pkg; Time::HiRes->import('gettimeofday');";
}
1;
- or download this
#!/usr/bin/perl -wl
use strict;
...
use MyStandardModules;
print scalar gettimeofday();
- or download this
package MyStandardModules;
...
strict->import();
}
1;
- or download this
#!/usr/bin/perl
{
...
$ ./889426.pl
Global symbol "$foo" requires explicit package name at ./889426.pl lin
+e 5.
Execution of ./889426.pl aborted due to compilation errors.