Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    print Dumper(\%INC);
    
  2. or download this
    $VAR1 = {
              [...]
    ...
              'Subclass1.pm' => 'Subclass1.pm',
              [...]
            };
    
  3. or download this
    use fIlE::SpEc qw(catfile); # note the wrong case
    
    $x = File::Spec->catfile('a', 'b', 'c'); # this works
    $x = catfile('a', 'b', 'c'); # this croaks