Help for this page

Select Code to Download


  1. or download this
    package Foo;
    use strict;
    use vars qw(@ISA @EXPORT_OK);
    ...
    @EXPORT_OK = qw(great stuff);
    
    # etc
    
  2. or download this
    package Foo;
    @ISA = 'Bar';
    @EXPORT_OK = qw(great stuff);
    use strict;
    
    # etc