*16 ** Индексное положение в Ruby
Array.new(3){ |index| index ** 2 }
# => [0, 1, 4]
Open Opossum
Array.new(3){ |index| index ** 2 }
# => [0, 1, 4]