< Futurebasic < Language < Reference

EXIT FN statement

EXIT FN

Statement

✔ Appearance ✔ Standard ✔ Console

Syntax

EXIT FN

Description

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

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

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.