in reply to Re: Multi-line comments in perl code?
in thread Multi-line comments in perl code?

Your solution

The following doesn't suffer from those limitations:

0 && q{ ... };
0 && comment && q{ ... };
use constant _comment_ => 0; _comment_ && q{ ... };