basic-lang 0.7.1

The BASIC programming language as it was in the 8-bit era.
Documentation
/*!
# `LOAD <filename>`

## Purpose
Load a BASIC program from the filesystem.

## Remarks
The filename may contain paths and anything else your filesystem allows.
The filename may also be a URL.

## Example 1
```text
LOAD "Your Awesome Program.BAS"
READY.
RUN
You Awesome Program Prints This Awesome String
```
## Example 2
```text
LOAD "http://example.com/program.bas"
READY.
RUN
Internet, meet BASIC.
```

*/