- or download this
BEGIN { push @INC, ".." }
use strict 1.04;
- or download this
BEGIN {
use lib ".."; # or unshift @INC, ".."
}
use strict 1.04;
- or download this
#!/usr/bin/perl -lW # catch all bleeping errors
...
main now using strict 1.03 qw(refs) from module /usr/share/perl/5.8/st
+rict.pm
- or download this
BEGIN {
eval {
...
};
revert() if $@;
}
- or download this
eval " use Foo::Bar 5.01 qw| ... | ";
revert() if $@;