in reply to Importing Dependency Version
#!/usr/bin/perl -l BEGIN { unshift @INC, '/root/mylib/lib'; } use strict; use warnings; require Exporter; use Email::Date::Format; use lib '/root/mylib/lib'; print "Email::Date::Format: ", $Email::Date::Format::VERSION; print "Exporter: ", $Exporter::VERSION;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Importing Dependency Version
by perldc (Initiate) on Oct 14, 2013 at 14:16 UTC |