ASSIGNS TO THE VARIABLE V THE VALUE FOUND IN A "DATA" STATEMENT
ACTION
The command READ stores in the variable V the value found in a DATA line. Each time one value is read, the next item in the statement DATA is ready for the next command READ.
SYNTAX:
READ V
USE ERROR EXAMPLE
dim a,b,c,d$
data 1,2,3,"Hello"
read a:print a
read b:read c:print b:print c
read d$:print d$
READ
READ V
SEE ALSO
DATA
RESTORE