Help for this page

Select Code to Download


  1. or download this
    use vars qw( @ISA @EXPORT_OK %EXPORT_TAGS );
    BEGIN {
        @ISA = qw( Exporter );
    ...
        %EXPORT_TAGS = ( ... );  # if necessary
        use Exporter;
    }
    
  2. or download this
    use vars qw( @EXPORT_OK %EXPORT_TAGS );
    BEGIN {
        @EXPORT_OK   = qw( ... );
    ...
        require Exporter;
        *import = \&Exporter::import;
    }