Interestings
- Array.new(size, obj) vs Array.new(size) { block }
Array.new(size, obj) will duplicate the object, whereas Array.new with a block will call the block n times, resulting in different objects.
Array.new(size, obj) will duplicate the object, whereas Array.new with a block will call the block n times, resulting in different objects.