STOP - QB64Official/qb64 GitHub Wiki

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