Help for this page

Select Code to Download


  1. or download this
    use lib "MyTest MyModules";   # wrong - a string!
    
  2. or download this
    use lib qw(MyTest MyModules); # correct - a list.
    
  3. or download this
    use lib "/home/.../MyTest /home/.../MyModules"
    
  4. or download this
    qwurx [shmem] > perl -le 'use lib "MyTest MyModules"; print for @INC'
    MyTest MyModules
    ...
    /usr/lib/perl5/vendor_perl/5.8.8/i586-linux-thread-multi
    /usr/lib/perl5/vendor_perl/5.8.8
    /usr/lib/perl5/vendor_perl