Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

RE: My favorite looping mechanism in Perl is:

by merlyn (Sage)
on May 09, 2000 at 16:59 UTC ( [id://10748]=note: print w/replies, xml ) Need Help??


in reply to My favorite looping mechanism in Perl is:

My favorite construct is the naked block, together with redo and last to trigger restart and exit:
{ blah; blah blah; last if $some_condition; more blah; more blah blah; redo if $some_other_condition; }
There... we've got a middle-exiting loop, guaranteeing at least one execution of the first part. Who says we don't have an easy "do-while" loop!

-- Randal L. Schwartz, Perl hacker

Replies are listed 'Best First'.
RE: RE: My favorite looping mechanism in Perl is:
by gaudior (Pilgrim) on May 09, 2000 at 19:39 UTC
    This is not an original observation, but you are one sick man. ;-)

    Thanks, Randal, for the insights you have shared in actually USING perl over the years.

    We appreciate it greatly.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-25 11:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found