RosettaCodeData/Task/Arrays/Suneido/arrays.suneido

6 lines
127 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
array = Object('zero', 'one', 'two')
array.Add('three')
array.Add('five', at: 5)
array[4] = 'four'
Print(array[3]) --> 'three'