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

6 lines
154 B
Plaintext

;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