Extends class : inheritance « Class « Ruby
- Ruby
- Class
- inheritance
Extends class
class Hello
def howdy
greeting = "Hello, Matz!"
puts greeting
end
end
class Goodbye < Hello
def solong
farewell = "Goodbye, Matz."
puts farewell
end
end
friendly = Goodbye.new
friendly.howdy
friendly.solong
Related examples in the same category