Help for this page

Select Code to Download


  1. or download this
    BEGIN {
        use Exporter   ();
    ...
        # as well as any optionally exported functions
        @EXPORT_OK   = qw($Var1 %Hashit &func3);
    }
    
  2. or download this
    BEGIN {
            use Exporter ();
    ...
            @EXPORT_OK   = qw ();
            %EXPORT_TAGS = ();
    }