I'm interested in what subroutine commenting practices people use. I'm not interested in figuring out which is the "best", just wonder methods others use...
When I create a module, before each private subroutine I put a comment like so:
##
## user_address()
##
## Arguments:
## $name: string Name of the user
## $phone: string Phone num of user
##
## Returns: string Address of user
##
## Does a database check on the given user and returns
## the address.
##
sub user_address {
#whatever
}
I always use empty parentheses on the top line, just to
make it obvious from a glance that this block of comments documents a subroutine.
Also, whenever I have a subroutine that will be called from outside the module, I use POD, like so:
=item population()
Arguments:
$country: string Country code of country
Returns: integer Population of country
Given a country, returns the population.
=cut
sub population { ...
My question: what do you do? I've seen a few varying styles in CPAN documentation... is there one style that you've found particularily useful, and why?
stephen
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|