How can I comment out a large block of Perl code?
Answer:
Perl does not support multi-line comments like C++ or Java. If you want to comment out a large block of Perl code, there is still a trick.
package Foo;
=pod
This is a multi-line comments
more...
more...
=cut
print "Hello";