Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

José's Guide for creating Perl modules

by cog (Parson)
on Feb 16, 2005 at 19:35 UTC ( [id://431702]=perltutorial: print w/replies, xml ) Need Help??

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,
      },
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perltutorial [id://431702]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-20 07:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found