Help for this page

Select Code to Download


  1. or download this
    package Blah;
    use strict;
    ...
    @Blah::ISA = qw/Exporter/;
    @Blah::EXPORT_OK = qw/whatever/;
    #...
    
  2. or download this
    package Blah;
    use strict;
    use vars qw/@ISA @EXPORT_OK $VERSION $Something_else/;
    #...