END

Example

END terminates both the TSP program section and the TSP data section.

END ;

Usage

END has no arguments. END is also used as a delimiter. In the data section it is used to mark the end of the current section of data and to force a return to execution of the TSP program. If there is more than one LOAD ; statement in the program section, each one will terminate at successive END statements in the data section.

Example

NAME USER ;

LOAD ;

........ execution with data from load section................

STOP ; END ;

........ load section with data .............................

END ;