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

Re^4: Boolean counter?

by Anonymous Monk
on Dec 07, 2009 at 16:15 UTC ( [id://811533]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Boolean counter?
in thread Boolean counter?

$i appears only once, the behaviour is defined
$ perl -MO=Deparse,-p -le"print - --$i" BEGIN { $/ = "\n"; $\ = "\n"; } print((-(--$i))); -e syntax OK
You were thinking of
print(-( ++$i - --$i ))

Replies are listed 'Best First'.
Re^5: Boolean counter?
by ikegami (Patriarch) on Dec 07, 2009 at 17:01 UTC

    While the operand evaluation order for the ops you've used in your example isn't defined, it doesn't matter (unless there's an overflow) for that example. It's just a clarity issue.

    $i appears only once, the behaviour is defined

    Except it ($Counter) appeared twice.

Log In?
Username:
Password:

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

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

    No recent polls found