basic/doc/statements/
read.rs

1/*!
2# `READ <variable>[,<variable>...]`
3
4## Purpose
5Reads the information defined in `DATA` statements.
6
7## Remarks
8An `?OUT OF DATA` error will occur when reading past the end.
9
10## Example
11```text
1210 READ A$,A%
1320 PRINT A$;A%
1430 DATA "NUGGET",3
15RUN
16NUGGET 3
17```
18
19*/