in reply to Better ways to make multi-line comments in Perl?

A good way is to use the POD system:
=pod die "testing"; =cut =for comment die "testing"; =cut

Also note - any decent code editor should enable you to throw a # in front of a selected set of lines very easily.

Replies are listed 'Best First'.
Re: Answer: Better ways to make multi-line comments in Perl?
by Anonymous Monk on Jan 12, 2011 at 06:38 UTC

    hi,

    when we use
    =for comment Commented text =cut
    we can make a block of statements in comment line.Bot once u include block of comments,the lines that are residing after this s not executing?wat to do for that?