Futurebasic/Language/Reference/exit fn
EXIT FN statement
editEXIT FN
editStatement
edit✔ Appearance ✔ Standard ✔ Console
Syntax
editEXIT FN
Description
editWhen used inside a LOCAL FN
function, this statement causes the program to jump immediately to the END FN
statement. The function then exits, passing back the value (if any) specified in the END FN
statement. This is useful when, for example, you wish to break out of a loop and quit the function immediately; EXIT FN
is a safer way to do this than using something like GOTO
.
Note:
You should not use the EXIT FN
statement outside of a LOCAL FN
function.
See Also
editLOCAL FN; END FN; GOTO; EXIT <label>