Skip to content

Instantly share code, notes, and snippets.

@yangsu
Created January 28, 2013 03:49
Show Gist options
  • Save yangsu/4652877 to your computer and use it in GitHub Desktop.
Save yangsu/4652877 to your computer and use it in GitHub Desktop.
Ruby Inheritance
class Base
def initialize()
@x = 10
end
end
class Derived < Base
def x
@x = 20
end
end
d = Derived.new
p d.x # => 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment