basic/doc/statements/
new.rs

1/*!
2# `NEW`
3
4## Purpose
5Erase the current program from memory.
6
7## Remarks
8It's gone for real.
9
10## Example
11```text
1210 PRINT "HELLO"
13NEW
14LIST
15READY.
16```
17
18*/