Help for this page

Select Code to Download


  1. or download this
    # Package/Exporter.pm
    package Package::Exporter;
    ...
    
    1;
    
  2. or download this
    # Foo/Bar.pm
    package Foo::Bar;
    ...
    
    1;
    
  3. or download this
    # foo.pl
    use Foo::Bar qw(Baz);
    
    print Baz::quux(), "\n";