Loop Control Structures

BREAK Verlässt die Schleife sofort.
CONTINUE Springt zur nächsten Schleife. (Jumps to the next occurence of a loop.)
DO ... LOOP Unendliche Schleife. (Infinite loop.)
FOR ... NEXT Zähler Schlefe (Counter loop.)
FOR EACH ... NEXT Selbst zählende Schlefe (Enumeration loop.)
REPEAT ... UNTIL Ausgangsprüfung am Ende der Schleife. (Loop with an exit test at the end.)
WHILE ... WEND Ausgangsprüfung am Anfang der Schleife. (Loop with an exit test at the beginning.)