in reply to Re: comment sections
in thread comment sections
However you can use POD to comment out large sections like so ....
If I'm going to use pod for this (my editor handles it nicely so I don't usually) I prefer to use
=begin block_comment ... =end block_comment =cut
or for smaller chunks of code without blank lines in them a simple
=for consideration_later ..... =cut
Doing it this way has the advantage that the pod'ed out code doesnt get treated by the various pod parsers as being part of the actual documentation.
|
|---|