1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
/*!
# `READ <variable>[,<variable>]`

## Purpose
Reads the information defined in `DATA` statements.

## Remarks
An `OUT OF DATA` error will occur when reading past the end.

## Example
```text
10 READ A$,A%
20 PRINT A$;A%
30 DATA "NUGGET",3
RUN
NUGGET 3
```

*/