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

9 lines
186 B
Plaintext

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