RosettaCodeData/Task/Arrays/PureBasic/arrays-2.purebasic

6 lines
154 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
;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