forked from QB64-Phoenix-Edition/QB64pe
-
Notifications
You must be signed in to change notification settings - Fork 0
EXIT FUNCTION
Samuel Gomes edited this page Nov 8, 2022
·
1 revision
The EXIT FUNCTION statement can be used to exit the FUNCTION before the code ends.
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 which is required in a FUNCTION procedure.