Help for this page

Select Code to Download


  1. or download this
    use subdir::Somemodule qw(%myhash);
    print join ("\n", keys %myhash), "\n";
    __END__
    
  2. or download this
    $>perl -I. import_test.pl
    
  3. or download this
    use subdir::Somemodule;
    import Somemodule qw(%myhash);
    print join ("\n", keys %myhash), "\n";
    __END__
    
  4. or download this
    # delete the 'subdir' from the use
    #
    use Somemodule qw(%myhash);
    print join ("\n", keys %myhash), "\n";
    __END__
    
  5. or download this
    
    $> perl -I 'subdir' importest.pl
    
  6. or download this
    This is perl, v5.6.1 built for MSWin32-x86-multi-thread