basic/doc/statements/load.rs
1/*!
2# `LOAD <filename>`
3
4## Purpose
5Load a BASIC program from the filesystem.
6
7## Remarks
8The filename may contain paths and anything else your filesystem allows.
9The filename may also be a URL.
10
11## Example 1
12```text
13LOAD "Your Awesome Program.BAS"
14READY.
15RUN
16You Awesome Program Prints This Awesome String
17```
18## Example 2
19```text
20LOAD "http://example.com/program.bas"
21READY.
22RUN
23Internet, meet BASIC.
24```
25
26*/