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

6 lines
154 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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