basic/doc/statements/
list.rs

1/*!
2# `LIST [<line number range>]`
3
4## Purpose
5Show the BASIC program currently in memory.
6
7## Remarks
8You can optionally specify a line or range.
9
10## Example
11```text
12LIST          ' Everything.
13LIST 120      ' Only line 120.
14LIST 100-     ' All from 100 to the last.
15LIST -100     ' All up to and including 100.
16LIST 500-600  ' Only lines 500 to 600 inclusive.
17```
18
19*/