Help for this page

Select Code to Download


  1. or download this
    package My::Package;
    use strict;
    ...
    
    # If you inherit from some other module (use sparingly):
    #use base qw( ... );
    
  2. or download this
    package My::Package;
    use strict;
    ...
        $VERSION = 0.01;
        @ISA = qw( ... );
    }
    
  3. or download this
    package My::Module;
    use strict;
    ...
        require Exporter;
        *import = \&Exporter::import;
    }