5 lines
76 B
QBasic
5 lines
76 B
QBasic
|
10 rem multidimensional arrays
|
||
|
20 t(3,4)= 4
|
||
|
30 print t(0,0)
|
||
|
40 print t(3,4)
|