in reply to Re^4: Developing a module, how do you do it ?
in thread Developing a module, how do you do it ?

PERL5LIB, "use lib" and "perl -I" all add paths to the front of @INC - thus a module specified in one of those will "win" over a module that's installed in one of Perl's default library directories.

Replies are listed 'Best First'.
Re^6: Developing a module, how do you do it ?
by mascip (Pilgrim) on Mar 02, 2012 at 21:16 UTC

    I am fairly sure i read this somewhere, probably in several books and websites, but it's fast to forget when you learn lots and don't use it (^c^). Thank you tobyink