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