- or download this
.
`-- My-New-Module
|-- Changes
...
| `-- Module.pm
`-- t
`-- My-New-Module.t
- or download this
module-starter --module=My::New::Module --author="Me, Myself" \
--email=myself@cpan.org
- or download this
`-- My-New-Module
|-- Changes
|-- MANIFEST
...
|-- 00.load.t
|-- pod-coverage.t
`-- pod.t
- or download this
`-- My
`-- New
`-- Module
...
|-- scripts
`-- t
`-- 001_load.t
- or download this
require Exporter;
our @ISA = qw(Exporter);
...
our @EXPORT = qw(
function1
);
- or download this
PREREQ_PM => {
'Another::Module' => 0.01,
},