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 '.';
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.