Ruby - Class Methods and Variables
Find the error in this Ruby code:
class Animal
def self.sound
puts "Roar"
end
def sound
puts "Meow"
end
end
animal = Animal.new
animal.sound
Animal.sound()