in reply to (tye2)Re: The last command is like the break statement in C
in thread The last command is like the break statement in C

Just to confuse C programmers, Perl has a continue keyword that is used in looping. If after your main loop block you have a block labelled continue, it will be executed between iterations. For giggles and grins, within a continue block the word next will restart the continue block. Combining continue, redo, and next properly you can write a triple-loop in one loop. I have no idea why someone would want to do this, but you can.
  • Comment on RE (tilly) 3: The last command is like the break statement in C