in reply to Re: Re: Block commenting
in thread Block commenting
Will avoid the interpolation. But you will still getuse strict; use warnings; <<'COMMENT'; $foo = 'bar'; COMMENT
To avoid that you can do:Useless use of a constant in void context at temp.pl line 3.
But that is a lot of work.use strict; use warnings; { no warnings; <<'COMMENT'; $foo = 'bar'; COMMENT }
--
flounder
|
|---|