Hey Fred,
How about a quick lesson on how to use the new READ and DATA commands. I just get Syntax errors when I try.
Can you not list groups of data like:
DATA 1,2,3,4,5
DATA 6,7,8,9,10
I need some help here

Code: Select all
DIM info(4,4)
For x=1 to 4
For y=1 to 4
Read info(x,y)
Next
Next
DataSection
Data.l 2,2,2,2
Data.l 2,4,4,2
Data.l 4,4,4,4
Data.l 2,2,2,2
EndDataSection