HTBasic Help
×
Menu
Index

STOP

Terminates program execution.
 
 STOP
 
Usage:
STOP
IF Finish THEN STOP
Example: STOP.BAS
Description:
When STOP is encountered, the program quits execution, I/O paths not in COM are closed and all variables are discarded. CONT cannot be used after STOP. To restart the program you must use the RUN statement. Use PAUSE to temporarily halt program execution and CONT to resume program execution.
See Also: