Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Desparate behavior in loop labels

by Errto (Vicar)
on Aug 29, 2007 at 03:05 UTC ( [id://635718]=note: print w/replies, xml ) Need Help??


in reply to Desparate behavior in loop labels

Here is an example:
sub foo { print $_; last if $_ >= 3; } sub bar { for (1 .. 10) { foo; } } bar;
This script will stop printing after "3". This is because calling last from inside foo jumps out of the loop it's in, even though that loop is defined in bar. By contrast, in languages like C or Java, the equivalent calls (break and continue) are simply illegal outside loops.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://635718]
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: (5)
As of 2024-04-18 17:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found