Help for this page

Select Code to Download


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