Help for this page

Select Code to Download


  1. or download this
    require 'test.pl';
    
  2. or download this
    use strict;
    use warnings;
    ...
    require 'test.pl';     # old style
    use MyTest;            # module (preferred)
    print Dumper(\%INC);   # show PATHs of all files loaded via do, use, r
    +equire