Help for this page

Select Code to Download


  1. or download this
    package Foo;
    use base 'Exporter;
    our @EXPORT_OK = qw(foo_this foo_that);
    
    sub foo_this { ... }
    
  2. or download this
    use Foo qw(foo_this foo_that);