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-DO.md
2022-12-24 19:12:43 -06:00

290 B

The EXIT DO statement can be used to exit a DO...LOOP from inside of the loop.

Syntax

EXIT DO

  • Used to exit a DO loop when a condition exists regardless of any loop conditions.

See Also