Skip to content

Instantly share code, notes, and snippets.

@radiospiel
Created March 13, 2016 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radiospiel/1995f5b1d9630444b241 to your computer and use it in GitHub Desktop.
Save radiospiel/1995f5b1d9630444b241 to your computer and use it in GitHub Desktop.
class X
def a
puts "X::a"
end
end
class Y < X
def a
puts "Y::a"
super
end
end
y = Y.new
y.a
# > ruby super.rb
# Y::a
# X::a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment