class Animal def initialize @color = "red" end def get_color return @color endendanimal = Animal.newputs "The new animal is " + animal.get_color