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

5 lines
154 B
Text

;Extend the Array above to 56 items without affecting the already stored data
ReDim MyArray(55)
MyArray(22) = 7
MyArray(33) = 11
MyArray(44) = 23