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