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

Re^2: if variants

by SpanishInquisition (Pilgrim)
on Oct 19, 2004 at 16:37 UTC ( [id://400584]=note: print w/replies, xml ) Need Help??


in reply to Re: if variants
in thread if variants

Personally I like:

if ($i>1) { $a = function_that_may_fail(); $i = ($a) ? $i+1 : 1; }

I find that the only time I really use "and" and "or" are with carp/croak/warn/die. But that's just me.

At worst:

do { $a=function_that_may_fail(); $i= $a ? $i+1 : 1; } if ($i>1)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (6)
As of 2024-04-19 06:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found