![]() |
|
Keep It Simple, Stupid | |
PerlMonks |
Re^2: Multi-line comments in perl code?by pKai (Priest) |
on Jul 13, 2006 at 20:42 UTC ( #561077=note: print w/replies, xml ) | Need Help?? |
Such an assignment has to end somewhere (semicolon, block end, EOF) to be syntactically correct. For sake of simplicity, assuming it is really just a comment (as opposed to production data), right on the same line, as in
And while you are on it you can even give perl a hint that it can forget about that content as soon as possible: $comment = <<'EOC' if 0; Of course, whether you should resort to such "comments" is a completely different question.
In Section
Seekers of Perl Wisdom
|
|