Skip to content

Instantly share code, notes, and snippets.

@ratnikov
Created February 16, 2011 20:17
Show Gist options
  • Select an option

  • Save ratnikov/830092 to your computer and use it in GitHub Desktop.

Select an option

Save ratnikov/830092 to your computer and use it in GitHub Desktop.
class A
def initialize
@foo = "bar"
end
end
class B < A
def initialize
super # invoke the super initialize
@baz = "zeta"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment