Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: What's your Module Template

by Tanktalus (Canon)
on Sep 15, 2005 at 15:45 UTC ( [id://492290]=note: print w/replies, xml ) Need Help??


in reply to What's your Module Template

My boilerplate is:

package ModuleTemplate; ########... # # (legal stuff here) # ########... use strict; use warnings; use diagnostics; =head1 NAME ModuleTemplate - Template for new perl modules =head1 SYNOPSIS Describe basics of how to use this module =head1 DESCRIPTION Describe the module =head1 FUNCTIONS Describe the functions =over 4 =item [function_name] [Describe what this function is about] Parameters: =over 4 =item [param1] [Describe param1] =item [param2] [Describe param2] =back Returns: [be sure to label all returns, including differences for arra +y vs scalar context] =cut sub function_name { } =back =head1 AUTHOR (my team name is here) =head1 COPYRIGHT Copyright 2005 (my company) (more legal stuff) =head1 BUGS No known deficiencies =cut 1;
For open-source stuff like goes on CPAN, I don't have a boilerplate. At least, not yet. :-)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (1)
As of 2024-04-25 04:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found