Help for this page

Select Code to Download


  1. or download this
    package Test::Test1;
    use warnings;
    ...
        __PACKAGE__->export_to_level(1, @_);
        return;
    }
    
  2. or download this
    our @EXPORT = qw/ ... /;
    sub import {
    ...
            *{$callerpackage."::".$export} = \&{$export};
        }
    }