in reply to
require and its subs
Why aren't you using
use StringDef;
instead?
use
is equivalent to
BEGIN { require Module; import Module LIST; }
[download]
so maybe you need to add an
import
to your script?
Comment on
Re: require and its subs
Download
Code
In Section
Seekers of Perl Wisdom