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)], }; $EXPORT_TAGS{':DEFAULT'} = $EXPORT_TAGS{':basic'}; # this would do it right? Or $EXPORT_TAGS{':DEFAULT'} .= $EXPORT_TAGS{':basic'}; Or $EXPORT_TAGS{':DEFAULT'} = ($EXPORT_TAGS{':basic'},@EXPORT); TIA Dan -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]