02-18-2014, 09:51 AM
ardentcrest Wrote:How do I do,At the moment, ZX BASIC does not support read, data.
Code:dim a$(3)
for f=1to 3
read a$(f)
data "text1","text2","text3"
You have to do:
Code:
a$(1) = "text1"
a$(2) = "text2"
...
Note: Support for READ, DATA and RESTORE is planned (for backward compatibility).