1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-16 15:25:13 +00:00
qb64/internal/help/EXIT-FUNCTION.md

18 lines
411 B
Markdown

The **EXIT FUNCTION** statement can be used to exit the [FUNCTION](FUNCTION) before the code ends.
## Syntax
> EXIT FUNCTION
* Use EXIT FUNCTION to immediately EXIT a FUNCTION if an undesirable condition is created.
* EXIT FUNCTION is not the same as [END FUNCTION](END-FUNCTION) which is required in a FUNCTION procedure.
## See Also
* [EXIT SUB](EXIT-SUB)
* [EXIT DO](EXIT-DO), [EXIT FOR](EXIT-FOR)