RosettaCodeData/Task/Collections/Fancy/collections-1.fancy
2023-07-01 13:44:08 -04:00

8 lines
186 B
Text

# 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 # => []