Help for this page
use vars qw( @ISA @EXPORT_OK %EXPORT_TAGS ); BEGIN { @ISA = qw( Exporter ); ... %EXPORT_TAGS = ( ... ); # if necessary use Exporter; }
use vars qw( @EXPORT_OK %EXPORT_TAGS ); BEGIN { @EXPORT_OK = qw( ... ); ... require Exporter; *import = \&Exporter::import; }