Skip to content

Instantly share code, notes, and snippets.

@catlike
Created November 28, 2010 19:08
Show Gist options
  • Save catlike/719206 to your computer and use it in GitHub Desktop.
Save catlike/719206 to your computer and use it in GitHub Desktop.
class Class
def initialize foo, bar
@foo = foo
@bar = bar
end
end
class SubClass < Class
def initialize foo, bar, awk
super foo, bar
@awk = awk
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment