Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^2: ?: = Obfuscation?

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


in reply to Re: ?: = Obfuscation?
in thread ?: = Obfuscation?

And dead set against this:

my $x = $y > 5 ? ($y = 0) : ($y = 1);

As you should be.

my $x = ($y = $y > 5 ? 0 : 1);

and

$y = $y > 5 ? 0 : 1; my $x = $y;

are much more readable.

Replies are listed 'Best First'.
Re^3: ?: = Obfuscation? (= =)
by tye (Sage) on Dec 01, 2006 at 22:18 UTC

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 taking refuge in the Monastery: (4)
As of 2024-04-18 21:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found