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

Re: Unconventional exit from while loop

by Laurent_R (Canon)
on May 24, 2013 at 22:04 UTC ( [id://1035214]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    if (a != b)
         if (a != c)
              if (a != d)
    ...
              endif
         endif
    endif
    
  2. or download this
    next if a == b;
    next if a == c;
    next if a == d;
    ...
    
  3. or download this
    if (a == b) goto next_record;
    if (a == c) goto next_record;
    ...
    

Log In?
Username:
Password:

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

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

    No recent polls found