in reply to Re: adding custom libraries to my perl
in thread adding custom libraries to my perl
If you're going to use this technique, use lib '/path/to/stuff' is easier to read, write and maintain than BEGIN{unshift @INC, "/path/to/stuff"}, although they do exactly the same thing.
See perlman:lib:lib (perldoc lib) for more details.
|
|---|