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