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

9 lines
186 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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 # => []