- or download this
package SRS::MyTest;
our @ISA;
...
BEGIN { print STDERR "HEREISIT @ISA\n"};
1;
- or download this
delete $INC{'XXX.pm'};
require 'XXX.pm';
- or download this
# main.pl
use XXX ();
delete $INC{'XXX.pm'};
require 'XXX.pm';
- or download this
# XXX.pm
package XXX;
...
BEGIN { print STDERR "HEREISIT @ISA\n"};
1;
- or download this
$ perl main.pl
HEREISIT File::Find
HEREISIT File::Find File::Find