Futurebasic/Language/Reference/exit fn

EXIT FN statement

edit

EXIT FN

edit

Statement

edit

✔ Appearance ✔ Standard ✔ Console

Syntax

edit

EXIT FN

Description

edit

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 Also

edit

LOCAL FN; END FN; GOTO; EXIT <label>