mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-05-01 12:33:47 +00:00
16 lines
187 B
Ruby
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
|