Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: if statement confusion

by toolic (Bishop)
on Jun 11, 2012 at 14:15 UTC ( [id://975575]=note: print w/replies, xml ) Need Help??


in reply to if statement confusion

B::Deparse (Tip # 6 from Basic debugging checklist)
perl -MO=Deparse -e '6 < 8 ? $ans = "true" : $ans = "false";' ($ans = 'true') = 'false';

Try:

$ans = 6 < 8 ? "true" : "false";
Conditional Operator

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (4)
As of 2024-04-20 04:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found