Class Ruby

# In Ruby, the initialize method is called automatically when you use a class to create an object. 
class Animal
  def initialize
  end
end