1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*!
# `END`
## Purpose
Immediately and unconditionally stop running the program
and return to a BASIC command prompt.
## Remarks
Variables are left intact for inspection.
`END` at the end of a program is optional.
`CONT` may be used to resume execution.
## Example
```text
10 PRINT "HELLO"
20 END
30 PRINT "THIS DOES NOT PRINT"
RUN
HELLO
```
*/