in reply to Re: Perl Programming guidelines/rules
in thread Perl Programming guidelines/rules

1) Open each subroutine with an description of what it does and how:

If you're going to do this, don't cargo cult from C and do it in comments. Use POD, so that the API documentation can be extracted into web pages.

  • Comment on Re: Re: Perl Programming guidelines/rules