basic/doc/statements/
run.rs

1/*!
2# `RUN [<line number>|<filename>]`
3
4## Purpose
5Clear memory and start the program.
6
7## Remarks
8This is a shortcut for `CLEAR:GOTO <line number>`.
9Omitting the line number defaults to the first line.
10Providing a filename loads a program and runs it.
11
12## Example
13```text
1410 PRINT "Hello World"
15RUN
16Hello World
17```
18
19*/