Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Weird syntax question

by htoug (Deacon)
on Aug 23, 2001 at 09:45 UTC ( [id://107244]=note: print w/replies, xml ) Need Help??


in reply to Weird syntax question

Whenever you are confused by some wierd perl syntax alway run to the wonderfull B::Deparse module.

If you use it with the -p option to add extra parentheses it will often (almost always) be clear what is going on.

Using it on your example I get:

perl -MO=Deparse,-p -e '$x=1;print 1 if $x or print 0' ($x = 1); (($x || print(0)) and print(1)); -e syntax OK
It should be clear that all the explanations concerning 'or' and expressions are true.

Your other question is related.
The interesting part is the line &one if $x or &zero;B::Deparse deparses it as (($x || &zero) and &one); $x is false, so it must evaluate &zero.
&zero prints 'zero' and returns false.
So the entire expression is false and &one is not called.

To sum it all up: use B::Deparse and all will be revealed.

Log In?
Username:
Password:

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

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

    No recent polls found