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

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