Futurebasic/Language/Reference/exit fn
< Futurebasic | Language | Reference
EXIT FN statementEdit
EXIT FNEdit
StatementEdit
✔ Appearance ✔ Standard ✔ Console
SyntaxEdit
EXIT FN
DescriptionEdit
When 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 AlsoEdit
LOCAL FN; END FN; GOTO; EXIT <label>