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

14 lines
272 B
Markdown
Raw Normal View History

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)