in reply to Re: Multi-line comments in perl code?
in thread Multi-line comments in perl code?
The last item may change with Perl6, for "=begin/end", but the rest will probably not.Actually, the first point:
POD is the official way to do multi line comments in Perlwill also change in Perl 6, which introduces an indentable, nestable, multi-line-able delimited comment:
A delimited comment is introduced by a # followed immediately by any kind of opening bracket. It is closed by the corresponding closing bracket.#{ comment here } #[ comment here ] #( comment here ) #< comment here > #« comment etc. »
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Multi-line comments in perl code?
by jdporter (Chancellor) on Jul 14, 2006 at 19:02 UTC | |
by TheDamian (Vicar) on Jul 15, 2006 at 00:23 UTC | |
by PetaMem (Priest) on Jul 17, 2006 at 06:46 UTC | |
by marklark (Initiate) on Jul 14, 2006 at 22:46 UTC | |
Re^3: Multi-line comments in perl code?
by BrowserUk (Patriarch) on Jul 15, 2006 at 01:02 UTC |
In Section
Seekers of Perl Wisdom