5 lines
127 B
Text
5 lines
127 B
Text
array = Object('zero', 'one', 'two')
|
|
array.Add('three')
|
|
array.Add('five', at: 5)
|
|
array[4] = 'four'
|
|
Print(array[3]) --> 'three'
|