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