Allows READ to reuse a previously read DATA statement.
RESTORE
[ location]
location is the line number or label of the DATA statement to read next. If you omit location, the next READ uses the first DATA statement in the program.
READ A, B, C
RESTORE
READ D, E, F
DATA 57, 68, 79
Assigns the value 57
to both A
and D
variables, 68
to B
and E
, and so on.