I have the following classes
class Animal
def move
"I can move"
end
end
class Bird < Animal
def move
super + " by flying"
end
end
class Penguin < Bird
def move
#How can I call Animal move here
"I can move"+ ' by swimming'
end
end
How can I call Animal's move method inside Penguin ? I can't use super.super.move. What are the options?
Thanks