in reply to Re^3: DateManip Delta_Format Usage
in thread DateManip Delta_Format Usage
The version is available (in almost every single module you can get from CPAN) as $VERSION in the module's namespace. For example, the following will usually work:
use Foo::Bar; print $Foo::Bar::VERSION;
For Date::Manip, that will work, or there's an alternative:
use Date::Manip; print DataManipVersion();
which just prints out that value.
|
|---|