1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*!
# `CONT`
## Purpose
Continue running an interrupted program.
## Remarks
Programs may be interrupted with an error condition,
by pressing CTRL-C, or the STOP and END statements.
## Example
```text
10 PRINT "HELLO"
20 END
30 PRINT "WORLD"
RUN
HELLO
CONT
WORLD
```
*/