Help for this page

Select Code to Download


  1. or download this
    # @INC is (a,b,c) here
    {
        use lib::lexical "d", "e";
    ...
        # @INC is (d,e,a,b,c) here
    }
    # @INC is (a,b,c) here
    
  2. or download this
    # @INC is (a,b,c) here
    {
        local @INC = ("d", "e", @INC);
    ...
        # @INC is (d,e,a,b,c) here
    }
    # @INC is (a,b,c) here