Help for this page

Select Code to Download


  1. or download this
    @ISA = qw(Exporter DynaLoader);
    
  2. or download this
    use Exporter qw( import );
    
  3. or download this
    require DynaLoader;
    
    # ...
    
    DynaLoader::bootstrap( __PACKAGE__ );
    
  4. or download this
    BEGIN {
        require Exporter;
        *import= \&Exporter::import;
    }