6
votes
How do you do polymorphism in Ruby?
Using idiomatic Ruby
class Animal
def sleep
puts "#{self.class} is sleeping"
end
end
class Dog < Animal
def make_noise
"Woof!"
end
end
class Cat < Animal
d …
