How do I enter a multi-line comment in Perl? [duplicate]
Possible Duplicate: What are the common workarounds for multi-line comments in Perl? How do I add a multi-line comment to Perl source code? Nikhil Jain POD is the official way to do multi line comments in Perl, see Multi-line comments in perl code and Better ways to make multi-line comments in Perl for more detail. From faq.perl.org[ perlfaq7 ] How can I comment out a large block of Perl code? The quick-and-dirty way to comment out more than one line of Perl is to surround those lines with Pod directives. You have to put these directives at the beginning of the line and somewhere where Perl