Help for this page

Select Code to Download


  1. or download this
    $ cat ~/tmp/pm_11124087/lib/XYZ.pm
    package XYZ;
    
    1;
    
  2. or download this
    $ cat ~/tmp/pm_11124087/test_lib.pl
    #!/usr/bin/env perl
    ...
    use lib 'lib';
    
    use XYZ;
    
  3. or download this
    $ ./test_lib.pl
    $
    
  4. or download this
    $ cd ..
    $ pm_11124087/test_lib.pl
    Can't locate XYZ.pm in @INC (you may need to install the XYZ module) (
    +@INC contains: lib /home/ken/...
    
  5. or download this
    $ cat ~/tmp/pm_11124087/test_lib.pl
    #!/usr/bin/env perl
    ...
    use lib "$FindBin::Bin/lib";
    
    use XYZ;
    
  6. or download this
    $ ./test_lib.pl
    $ cd ..
    $ pm_11124087/test_lib.pl
    $