1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-16 20:05:14 +00:00
qb64/internal/help/STOP.md

14 lines
272 B
Markdown

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](END) or [SYSTEM](SYSTEM) instead.
## See Also
* [END](END), [SYSTEM](SYSTEM)
* [ON](ON), [OFF](OFF)