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

272 B

The STOP statement is used to stop program execution.

Syntax

STOP

  • STOP ends the program.
  • Since QB64 programs are compiled and not interpreted, use END or SYSTEM instead.

See Also