in reply to Re: Importing Dependency Version
in thread Importing Dependency Version
which did not work. Simply moving the use warnings; to the end does work.use strict; use warnings; use lib qw{./lib}; print "Email::Date::Format: ", $Email::Date::Format::VERSION; print "Exporter: ", $Exporter::VERSION;
Apparently there is a special order to for "use" which I did not know about.use strict; use lib qw{./lib}; use warnings; print "Email::Date::Format: ", $Email::Date::Format::VERSION; print "Exporter: ", $Exporter::VERSION;
|
|---|