Skip to content

Instantly share code, notes, and snippets.

@xaviershay
Created December 24, 2011 02:31
Show Gist options
  • Save xaviershay/1516029 to your computer and use it in GitHub Desktop.
Save xaviershay/1516029 to your computer and use it in GitHub Desktop.
class A
def say_name
puts name
end
private
def name; "A"; end
end
class B < A
def name; "B"; end
end
B.new.say_name # => "B"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment