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)?
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
> > 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
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
> 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