The BREAK control command ends the execution within a control structure and then continues.
Example
FOR I = 0 TO 10 STEP 1
INPUT "A"; A
IF A = 5 THEN
BREAK
ENDIF
NEXT
The BREAK control command ends the execution within a control structure and then continues.
FOR I = 0 TO 10 STEP 1
INPUT "A"; A
IF A = 5 THEN
BREAK
ENDIF
NEXT