Help for this page

Select Code to Download


  1. or download this
    my $libpath;
    BEGIN { $libpath = "/foo/bar"; }
    use lib $libpath;
    
  2. or download this
    {
        local @INC = ("/foo/bar", @INC);
        require Foo;
        Foo->import;
    }