Re: Commenting Perl code

2006-11-29 Thread Ken Foskey
On Tue, 2006-11-28 at 08:03 -0500, Robert Hicks wrote: > Do you use the regular "#" or inline POD statements? POD describes the programs purpose and how to use it. # comments describe tricky code or coding decisions. -- Ken Foskey FOSS developer -- To unsubscribe, e-mail: [EMAIL PROTECTED] F

Re: Commenting Perl code

2006-11-28 Thread Robert Hicks
Adriano Ferreira wrote: On 11/28/06, Robert Hicks <[EMAIL PROTECTED]> wrote: Do you use the regular "#" or inline POD statements? Both. # is proper for intimate comments of the implementation code, like: $META ||= CPAN->new; # In case we re-eval ourselves we need the || # from http://se

Re: Commenting Perl code

2006-11-28 Thread Adriano Ferreira
On 11/28/06, Robert Hicks <[EMAIL PROTECTED]> wrote: Do you use the regular "#" or inline POD statements? Both. # is proper for intimate comments of the implementation code, like: $META ||= CPAN->new; # In case we re-eval ourselves we need the || # from http://search.cpan.org/src/ANDK/CP

Commenting Perl code

2006-11-28 Thread Robert Hicks
Do you use the regular "#" or inline POD statements? Robert -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: commenting perl

2002-04-24 Thread Jaremy Creechley
The best way I have found is to use the =cut then =cut =cut comment foo foosub =cut with no spaces. There is also a method used for cutting out HTML automatically. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: commenting perl

2002-04-24 Thread Garrett Moylan
7;s before each line -Original Message- From: Shaun Fryer [mailto:[EMAIL PROTECTED]] Sent: 23 April 2002 23:38 To: Perl Beginners Subject: commenting perl Is there a simple way to comment multiple lines in Perl in a like manner to the "/*" or "

RE: commenting perl

2002-04-23 Thread Mike Rapuano
=cut multi line comment =cut __DATA__ Mike -Original Message- From: Shaun Fryer Sent: Tue 4/23/2002 6:37 PM To: Perl Beginners Cc: Subject: commenting perl Is there a simple way to

commenting perl

2002-04-23 Thread Shaun Fryer
Is there a simple way to comment multiple lines in Perl in a like manner to the "/*" or "