RE: Quick export question

2003-08-14 Thread Bob Showalter
Dan Muey wrote: > I'm wanting to setup a module that will export whatever is in > @EXPORT (if anythign) and ':basic' > > IE I want > use Monkey; > To be identical to > use Monkey qw(:basic); > > So if I have this on the module which of 3 ways I'm trying to > accoomplish that are valid (if any)?

RE: Quick export question

2003-08-14 Thread Charles K. Clarkson
Dan Muey <[EMAIL PROTECTED]> wrote: : : I'm wanting to setup a module that will export whatever is in : @EXPORT (if anythign) and ':basic' : : IE I want : use Monkey; : To be identical to : use Monkey qw(:basic); Seems like you really need is a way to test this for yourself. Here's a qui

RE: Quick export question

2003-08-11 Thread Dan Muey
> > I'm wanting to setup a module that will export whatever is > in @EXPORT > > (if anythign) and ':basic' > > > > IE I want > > use Monkey; > > To be identical to > > use Monkey qw(:basic); > > > > So if I have this on the module which of 3 ways I'm trying to > > accoomplish that are valid

Quick export question

2003-08-08 Thread Dan Muey
I'm wanting to setup a module that will export whatever is in @EXPORT (if anythign) and ':basic' IE I want use Monkey; To be identical to use Monkey qw(:basic); So if I have this on the module which of 3 ways I'm trying to accoomplish that are valid (if any)? %EXPORT_TAGS = { ':basi

RE: Quick export question

2003-08-08 Thread Dan Muey
> I'm wanting to setup a module that will export whatever is in > @EXPORT (if anythign) and ':basic' > > IE I want > use Monkey; > To be identical to > use Monkey qw(:basic); > > So if I have this on the module which of 3 ways I'm trying to > accoomplish that are valid (if any)? > > %EXPORT