Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^2: ?: = Obfuscation?

by ikegami (Patriarch)
on Dec 01, 2006 at 20:31 UTC ( [id://587298]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $x = $y > 5 ? ($y = 0) : ($y = 1);
    
  2. or download this
    my $x = ($y = $y > 5 ? 0 : 1);
    
  3. or download this
    $y = $y > 5 ? 0 : 1;
    my $x = $y;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (5)
As of 2024-04-23 21:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found