in reply to What is the easy way to comment out chunk of Perl Code

Well, usually we just run pounds down the leftmost column so other know for sure the code is out of use. This is facilitated in many editors (both inserting and removing). But if you insist on a short cut that isn't visually distinct through the block try this:
=begin GHOSTCODE ... =end GHOSTCODE =cut
This makes the code invisible to the compiler and to perldoc.

Phil

Replies are listed 'Best First'.
Re2: What is the easy way to comment out chunk of Perl Code
by gasho (Beadle) on Nov 18, 2005 at 19:30 UTC
    Phil ! Thank you very much Gasho