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