http://qs1969.pair.com?node_id=478123


in reply to package names

package Package; use strict; require Exporter; use vars qw/@ISA @EXPORT/; @ISA = qw/Exporter/; @EXPORT = qw/subroutine1 subroutine2 subroutine3 subroutine4/; # ... 1;

Replies are listed 'Best First'.
Re^2: package names
by siliconGopher (Initiate) on Jul 26, 2005 at 10:05 UTC
    esskar,
    exactly what I was looking for. thank you.