> 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 = {
>       ':basic' =>     [qw(fred wilma barney dino)],
> };

Sorry about the mess there, Let me fix it:

$EXPORT_TAGS{':DEFAULT'} = $EXPORT_TAGS{':basic'};

Or 

$EXPORT_TAGS{':DEFAULT'} .= $EXPORT_TAGS{':basic'}; 

Or 

$EXPORT_TAGS{':DEFAULT'} = > ($EXPORT_TAGS{':basic'},@EXPORT);

There that's more readable!


> 
> TIA
> 
> Dan
> 
> -- 
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to