Ends execution of the program. The Stop statement can be placed anywhere in your code.
Example
Dim x,y,zFor x = 1 to 5For y = 1 to 5For z = 1 to 5Print "Looping",z,y,xNext zNext yStopNext x
See Also
Control Structures
Published June 2018