Skip to content

Instantly share code, notes, and snippets.

@gonzaga
Created December 13, 2012 14:27
Show Gist options
  • Save gonzaga/4276695 to your computer and use it in GitHub Desktop.
Save gonzaga/4276695 to your computer and use it in GitHub Desktop.
class A
def foo(a)
bar(a)
end
end
class B < A
def bar(b)
blah blah
end
end
c = B.new
c.foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment