STOPS THE PROGRAM EXECUTION AND DISPLAYS A WINDOW TO BE ACKNOWLEDGED
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 ERROR EXAMPLE
dim i
rem display number from 1 to 10
for i=1 to 10
if i=5 then stop
next i
STOP
STOP
SEE ALSO
END
TERMINATE