Does Gambas support read/data commands like the following for loading a
simple array with fixed values?
for t=0 to 4
for x = 0 to 4
read v(t,x)
next x
next t
data 1,2,3,4,5,1,2,3,4,5,1,2,3,4,5......
Maybe I'm just not finding it?