in reply to Re: Need help writting a Perl Module
in thread Need help writting a Perl Module

Depends on want you want to do ... if you want the subs from your module shared with other scripts export the sube. If you want to share also variables e.g. constants, export the variables. Maybe better declare vars with 'our' then, I'm not sure if this is always necessary.