RosettaCodeData/Task/Collections/Fancy/collections-1.fancy

9 lines
186 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
# creating an empty array and adding values
a = [] # => []
a[0]: 1 # => [1]
a[3]: 2 # => [1, nil, nil, 2]
# creating an array with the constructor
a = Array new # => []