in reply to
New module usage
The search path for modules is compiled into perl, but you can adjust it locally in your script using the
lib
pragma:
use lib '.';
[download]
That will make all the following
use
statements check the current directory first. Not a good idea in live software, but very handy when testing stuff.
Comment on
Re: New module usage
Download
Code
In Section
Seekers of Perl Wisdom