Futurebasic/Language/Reference/exit fn
Appearance
EXIT FN statement
[edit | edit source]EXIT FN
[edit | edit source]Statement
[edit | edit source]✔ Appearance ✔ Standard ✔ Console
Syntax
[edit | edit source]EXIT FN
Description
[edit | edit source]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 | edit source]LOCAL FN; END FN; GOTO; EXIT <label>