Help for this page

Select Code to Download


  1. or download this
    #! perl -w
    
    ...
    # more subs ...
    
    1;
    
  2. or download this
    #! perl -w
    use strict;
    ...
    
    MyModule::isFile("MyModuleTest.pl");
    MyModule::isFile("NotHere");
    
  3. or download this
    #! perl -w
    
    ...
    # more subs ...
    
    1;
    
  4. or download this
    #! perl -w
    use strict;
    ...
    
    $mod->isFile("MyModuleTest.pl");
    $mod->isFile("NotHere");