FORCES TO READ VALUES FROM THE FIRST "DATA" STATEMENT
ACTION
The command RESTORE forces to read values from the first DATA line.
SYNTAX:
RESTORE
USE ERROR EXAMPLE
dim a,b,c,d$
data 1,2,3,"Hello"
read a,b:print a:print b
restore
rem we read again from the first line DATA
read a,b,c:print a:print b:print c
read d$: print d$
RESTORE
RESTORE
SEE ALSO
DATA
READ
RESTORE_LABEL