edherrin has asked for the wisdom of the Perl Monks concerning the following question:
I am trying to access a module subroutine from another module.
I can access the subroutine fine from a script (test.pl) using:
'use foo.pm;'
'foo->do_something;'
But I can't call the same subroutine from another module (foo2.pm)
Any suggestions.