Skip to content

Instantly share code, notes, and snippets.

@Talleyran
Created December 13, 2010 17:52
Show Gist options
  • Save Talleyran/739307 to your computer and use it in GitHub Desktop.
Save Talleyran/739307 to your computer and use it in GitHub Desktop.
class A
def a
puts 'a'
end
end
class B<A
def a
super()
puts 'b'
end
end
B.new.a #a b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment