Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Conditional Interpretation?

by ikegami (Patriarch)
on Feb 01, 2006 at 03:13 UTC ( [id://526951]=note: print w/replies, xml ) Need Help??


in reply to Conditional Interpretation?

Two ways.

1. You can tell Perl to use the C preprocessor with the command line option -P. Be sure to read the limitations of the switch, as documented in perlrun.

2. Use constant folding to remove the checks at runtime. In the following, notice how the debug code is removed when (and only when) a constant expression is used in the if:

>perl -MO=Deparse -e "$DEBUG = 0; print(qq{debug\n}) if $DEBUG; print( +qq{end\n})" $DEBUG = 0; print "debug\n" if $DEBUG; print "end\n"; -e syntax OK >perl -MO=Deparse -e "use constant DEBUG => 0; print(qq{debug\n}) if D +EBUG; print(qq{end\n})" use constant ('DEBUG', 0); '???'; print "end\n"; -e syntax OK

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://526951]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (3)
As of 2024-04-26 06:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found