Files
dockerfiles/tests/ruby/testcase/classinheritance.rb
2019-08-04 22:54:34 -07:00

16 lines
187 B
Ruby

class Mammal
def breathe
puts "inhale and exhale"
end
end
class Cat < Mammal
def speak
puts "Meow"
end
end
rani = Cat.new
rani.breathe
rani.speak