in reply to help with versioning modules
Your declaration of
is looking for the subroutine My::Foo::VERSIONuse My::Foo 1.0;
Update: The VERSION subroutine , if absent, is implicitly imported from UNIVERSAL - into your package, which , again, is named "Foo" and not "My::Foo" - hence "My::Foo::VERSION" continues to not exist, whereas Foo::VERSION would exist as a result of "package Foo;".
"Imaginary friends are a sign of a mental disorder if they cause distress, including antisocial behavior. Religion frequently meets that description"
|
|---|