1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/EXIT-FOR.md
2022-12-24 19:12:43 -06:00

348 B

The EXIT FOR statement allows a condition other than the counter value to exit a FOR...NEXT loop.

Syntax

EXIT FOR...NEXT

  • Used with a conditional statement to exit a FOR counter loop early.

See Also