Help for this page

Select Code to Download


  1. or download this
    use Module;
    
      -and-
    
    use Module qw( ... );
    
  2. or download this
    BEGIN {
       require Module;
    ...
       require Module;
       Module->import(qw( ... ));
    }
    
  3. or download this
    {
       no warnings 'once';
       *import = \&Exporter::import;
    }