< Futurebasic < Language < Reference
EXIT structure statement
EXIT <structure>
Statements
✔ Appearance ✔ Standard ✔ Console
Syntax
EXIT CASE
EXIT DO
EXIT FOR
EXIT NEXT
EXIT UNTIL
EXIT WEND
EXIT WHILE
Revised
May 30, 2000 (Release 3)
Description
When used inside a FOR/NEXT
loop, WHILE/WEND
conditional, DO/UNTIL
conditional, or in a SELECT CASE
structure, this statement causes the program to jump immediately to the line following the NEXT
, WEND
, UNTIL
, or END SELECT
statement. This is useful when, you wish to break out of a loop because a certain condition has been met. EXIT
is a safe way to do it.
Example:
FOR x = 1 TO 10
IF FN BUTTON THEN EXIT FOR
NEXT x
See Also
FOR; While; Do; Select Case
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.