Skip to content

Instantly share code, notes, and snippets.

@senny
Created May 13, 2014 14:31
Show Gist options
  • Save senny/9c8d2812629a7e4b5503 to your computer and use it in GitHub Desktop.
Save senny/9c8d2812629a7e4b5503 to your computer and use it in GitHub Desktop.
class Person
end
class Manager < Person
def say
puts "welcome"
end
end
class Manager
def say
puts "howdy!"
end
end
m = Manager.new
m.say # => "howdy!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment