Help for this page

Select Code to Download


  1. or download this
      my $projectLocation = '/some/other/place';
    
  2. or download this
    BEGIN {
      my $projectLocation = '/some/other/place';
      use lib $projectLocation;
    }
    
  3. or download this
    BEGIN {
      use lib $ENV{MYLIBRARYDIR};
      printf "in BEGIN:   '%s'\n", join("', '", @INC );
    }