YEARS AGO
I use to program computer in Basic, and I'd often use the Read and Data commands.
I hate to admit but I've totally forgotton everything about them, and I'm sure I can do the following...
Suppose I have a data statement like...
DATA 1,2,4,6,2,5,4,2,3,34,23,1,4,12,13,14
What I want to end up with is to read the data and have the following...
varA(1)=1
varA(2)=2
varA(3)=3
varA(4)=4
varB(1)=2
varB(2)=4
varB(3)=34
varB(4)=12
varC(1)=4
varC(2)=4
varC(3)=23
varC(4)=13
varD(1)=6
varD(2)=2
varD(3)=1
varD(4)=14
Anyone know if this is possible 'cos it would be a god-send.
~ J ~