Skip to content

Instantly share code, notes, and snippets.

View imogenkinsman's full-sized avatar

Imogen Kinsman imogenkinsman

  • Portland, OR
View GitHub Profile
@imogenkinsman
imogenkinsman / gist:6237718
Last active December 21, 2015 02:49
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")