In a program I'm writing, I used DIM EX(24,4), which worked fine. But
then when I called it with
FOR I=1 TO 24
FOR J=1 TO 4
READ EX(I,J)
NEXT J
NEXT I
I got Syntax horror in the line READ EX(I,J). I do NOT have this
problem with one-dimensional arrays. Is there a different syntax with
which I'm supposed to call it?