Help for this page

Select Code to Download


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