in reply to Automatically export all subs in a module
and so on. Then when I'm adding or deleting a subroutine, the code to "export" it is right there.use vars qw(@EXPORT); ... sub foo { ... } push @EXPORT, 'foo'; ... sub bar { ... } push @EXPORT, 'bar'; ...
-- Randal L. Schwartz, Perl hacker
|
|---|