statement/STOP                                                 statement/STOP
 
 NAME
     STOP -- Halts the program execution
 
 ABBREVIATION
     s <shift> T

 SYNOPSIS
     STOP

 FUNCTION
     This statement halts the program. A message, BREAK IN LINE <line>, where
     the <line> is the line number containing the STOP. The program can be 
     re-started at the statement following STOP if you use the CONT command. 
     The STOP statement is usually used while debugging a program.
 
 INPUTS
     None
 
 RESULT
     Halts the program execution.

 EXAMPLES
     100 STOP
 
 NOTES
     None
 
 BUGS
     None
 
 SEE ALSO
     CONT
     END
     TRON