last, next and redo provide ways to alter execution flow in loops: |
while (something is tested) {
|
} |
# last jumps to here |
last jumps out of loop |
next jumps over rest of loop |
redo jumps back to start of loop |
These commands control innermost enclosing for, foreach, or while loop |