next, redo and last can jump to labelled statements with commands such as |
next LABEL1; # or |
last LABEL2; # or |
redo LABEL3; |
LABEL1: This is start of any statement block; # is typical statement label |
This is typically used to allow you to jump out over several nests of loops |