1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
/*!
# `LOAD <filename>`

## Purpose
Load a BASIC program from the filesystem.

## Remarks
The filename may contain paths and anything else your filesystem allows.

## Example
```text
LOAD "Your Awesome Program.BAS"
READY.
RUN
My Awesome Program Prints This Awesome String
```
*/