CONT

CONTinues the execution of a program after it was STOPped or BREAKed (forgive the grammar). If the use of the command is invalid (i.e., the program has been modified since the STOP or BREAK), a "Can't continue error" will be given.

Program Example.

00100 FOR I = 1 TO 100
00110 PRINT I
00120 IF I = 20 THEN STOP
00130 NEXT I
00140 END 

Try it

RUN the program and, when it stops, type CONT <CR> to continue execution.

See also BREAK, STOP