Help for this page

Select Code to Download


  1. or download this
    package Mod;
    require Exporter;
    
    ...
      @ISA = qw(Exporter);
      Exporter::export_ok_tags('all');
    }
    
  2. or download this
    use Mod qw(:all);
    Foo()
    
  3. or download this
    package Mod::Sub
    use Mod qw(:all);
    Foo()