Pathologically Eclectic Rubbish Lister | |
PerlMonks |
perlfunc:continueby gods (Initiate) |
on Aug 24, 1999 at 22:42 UTC ( [id://276]=perlfunc: print w/replies, xml ) | Need Help?? |
continueSee the current Perl documentation for continue. Here is our local, out-dated (pre-5.6) version: continue - optional trailing block in a while or foreach
continue BLOCK
Actually a flow control statement rather than a function. If there is a
continue
BLOCK attached to a
BLOCK (typically in a
last, next, or redo may appear within a continue block. last and redo will behave as if they had been executed within the main block. So will next, but since it will execute a continue block, it may be more entertaining.
while (EXPR) { ### redo always comes here do_something; } continue { ### next always comes here do_something_else; # then back the top to re-check EXPR } ### last always comes here Omitting the continue section is semantically equivalent to using an empty one, logically enough. In that case, next goes directly back to check the condition at the top of the loop. |
|