Help for this page

Select Code to Download


  1. or download this
    package Exporter::All;
    sub import {
    ...
    }
    
    1;
    
  2. or download this
    package Foo::Bar::Baz;
    use Exporter::All;
    ...
    package main;
    use Foo::Bar::Baz;
    x();
    
  3. or download this
    package Foo::Bar::Baz;
    sub x {print 1};
    ...
    package main;
    use Exporter::All qw(Foo::Bar::Baz);
    x();