Help for this page

Select Code to Download


  1. or download this
       # In myInc.pm, located in standard perl lib directory
       package myInc;
       use lib /path/to/my/special/lib;
       1;
    
  2. or download this
       # ... in your script
       use myInc;
       use GD; # or whatever in your local lib
       # ...