Can someone tell me how to access a certain piece of a DATA string?
For example, if I use the lines
RESTORE TEST
FOR Y = 1 TO 10
FOR X = 1 TO 10
READ INFO
PRINT INFO
NEXT
NEXT
TEST:
DATA 1,2,3,4,5
DATA 2,2,3,1,5
DATA 1,5,8,4,1
DATA 6,3,3,0,5
DATA 1,2,3,4,2
This code would access the...