RosettaCodeData/Task/Collections/Ruby/collections.rb
Ingy döt Net 80737d5a6a new tasks
2013-04-09 00:46:50 -07:00

8 lines
206 B
Ruby

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