in reply to Re: Re: Spanning Modules Across Multiple Files
in thread Spanning Modules Across Multiple Files
Least this is what i do.. look at the Module Tutorialspackage my_module ; use strict ; use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); $VERSION = 1.00; @ISA = qw(Exporter); @EXPORT = qw(&db_open &db_close) ; @EXPORT_OK = qw(&db_open &db_close &db_store &db_fetch &db_keys); #your subs go here 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Spanning Modules Across Multiple Files
by caedes (Pilgrim) on Jul 05, 2002 at 12:55 UTC | |
by yodabjorn (Monk) on Jul 05, 2002 at 13:04 UTC |