Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^3: arrays: shifting in while loop

by AnomalousMonk (Archbishop)
on Mar 07, 2012 at 15:17 UTC ( [id://958305]=note: print w/replies, xml ) Need Help??


in reply to Re^2: arrays: shifting in while loop
in thread arrays: shifting in while loop

... the while-loop EXPR [is] re-evaluated after each iteration...

It is, but I was trying to make a (perhaps rather trivial) point with regard to continued execution of the loop body (which I've tried to clarify in the original reply) as exemplified below.

>perl -wMstrict -le "my @ra = (9, 8, 7); ;; while (@ra) { print 0+@ra, ' in @ra'; shift @ra; print 0+@ra, ' in @ra'; shift @ra; print 0+@ra, ' in @ra'; shift @ra; print 0+@ra, ' in @ra'; shift @ra; print 0+@ra, ' in @ra'; shift @ra; print 0+@ra, ' in @ra'; } " 3 in @ra 2 in @ra 1 in @ra 0 in @ra 0 in @ra 0 in @ra

Replies are listed 'Best First'.
Re^4: arrays: shifting in while loop
by repellent (Priest) on Mar 07, 2012 at 17:07 UTC
    Great, I knew I missed something from your original post.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (11)
As of 2024-04-19 16:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found