in reply to Re: Re: Block commenting
in thread Block commenting

use strict; use warnings; <<'COMMENT'; $foo = 'bar'; COMMENT
Will avoid the interpolation. But you will still get
Useless use of a constant in void context at temp.pl line 3.
To avoid that you can do:
use strict; use warnings; { no warnings; <<'COMMENT'; $foo = 'bar'; COMMENT }
But that is a lot of work.

--

flounder