RosettaCodeData/Task/Arrays/BASIC/arrays-3.basic
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

6 lines
202 B
Text

'Specify that the array is dynamic and not static:
'$DYNAMIC
DIM SHARED myArray(-10 TO 10, 10 TO 30) AS STRING
REDIM SHARED myArray(20, 20) AS STRING
myArray(1,1) = "Item1"
myArray(1,2) = "Item2"