|
|
| go ahead... be a heretic | |
| PerlMonks |
Export from module in subdirectoryby SuicideJunkie (Priest) |
| on Oct 09, 2012 at 18:25 UTC ( #998052=perlquestion: print w/ replies, xml ) | Need Help?? |
|
SuicideJunkie has asked for the
wisdom of the Perl Monks concerning the following question:
I have a module which was working great when it was in the same directory as my script. Recently I tried to organize things and put the module in a subdirectory, but the functions are no longer being exported to main:: Originally, I could use test; and then just call min(). After moving the file to lib/test.pm, I use lib::test, and min(); no longer works; I had to say test::min(); What have I done wrong here, and how can I get my functions exported while the module is in a subdirectory? test.pl#test.pm lib/test.pm
(Treating undef as zero wasn't convenient. This ignores undefs and returns the smallest defined value)
Back to
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||||||||||||||||