STATEMENT CONTAINING A STREAM OF CONSTANTS, TO BE USED BY "READ"
ACTION
The statement DATA is not executable, it supplies a stream of constants for reading with READ command.
SYNTAX:
DATA
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$
DATA
DATA
SEE ALSO
READ
RESTORE