Beefy Boxes and Bandwidth Generously Provided by pair Networks Cowboy Neal with Hat
P is for Practical
 
PerlMonks  

Re^3: Block commenting

by flounder99 (Friar)
on Nov 04, 2003 at 12:55 UTC ( [id://304490]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://304490]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.