Creating an Object
# You use the new method to create an object in Ruby. class Animal def initialize @color = "red" end def get_color return @color end end animal = Animal.new
1. | Alias method name | ||
2. | Add private method to Object and call it in instance class |