in reply to Module usage
A slight bug in this (IMHO) is that you can't use a module name (i.e. $INC{"Data::Dumper"} won't work). You have to use the filename of the module. Oh, and you have to "use" or "require" the module before %INC includes the module's file. --Dave.use Data::Dumper; print $INC{"Data/Dumper.pm"};
|
|---|