STOP

STOP

STOPS THE PROGRAM EXECUTION AND DISPLAYS A WINDOW TO BE ACKNOWLEDGED

  • Type: Command
  • Parameter: 0
  • Group: Reference

ACTION

The command STOP stops the program execution and displays a window with the line number of the STOP command.

It is then possible to continue or to stop definitively the program execution.

SYNTAX: STOP

USE

  • The command STOP is used to debug a program : to trace the execution with the displayed line number.

ERROR

  • None.

EXAMPLE

dim i

rem display number from 1 to 10

for i=1 to 10

if i=5 then stop

next i

SEE ALSO

END

TERMINATE