in reply to
Re: Defining a module .....
in thread
Defining a module .....
Using
@EXPORT
and
@EXPORT_OK
(etc.) are only needed and useful if you're also actually exporting symbols, often with
Exporter.pm
.
Also,
use lib "path"
is generally preferred over manually
push()
ing to
@INC
.
japhy
--
Perl and Regex Hacker
Comment on
Re: Re: Defining a module .....
In Section
Seekers of Perl Wisdom