Skip to content

Instantly share code, notes, and snippets.

@imogenkinsman
Last active December 21, 2015 02:49
Show Gist options
  • Save imogenkinsman/6237718 to your computer and use it in GitHub Desktop.
Save imogenkinsman/6237718 to your computer and use it in GitHub Desktop.
example of a super call
class A
def my_func(str)
puts str
end
end
class B < A
def my_func(str)
puts str
super("called from B#my_func")
end
end
b = B.new
b.my_func("test")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment