in reply to Export from module in subdirectory

Inside test.pm you need to declare the package as:
package lib::test;

Then you can use min(); in test.pl.

That being said, you should eventually select better names than lib and test.

Replies are listed 'Best First'.
Re^2: Export from module in subdirectory
by tobyink (Canon) on Oct 09, 2012 at 19:32 UTC

    "you should eventually select better names than lib and test"

    Interestingly, this was uploaded to CPAN just now... Test::Lib 0.001.

    perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'
Re^2: Export from module in subdirectory
by SuicideJunkie (Vicar) on Oct 09, 2012 at 19:07 UTC

    That makes total sense once someone has said it :) Thanks!

    I used lib and test for the cut-down sample rather than the 50k of original code.