Skip to content

Instantly share code, notes, and snippets.

@leejarvis

leejarvis/blah Secret

Created February 21, 2012 08:54
Show Gist options
  • Save leejarvis/72a6ceace2167bf247c2 to your computer and use it in GitHub Desktop.
Save leejarvis/72a6ceace2167bf247c2 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
class Foo
@var = "hello"
end
class Bar < Foo; end
class Baz < Foo
@var = "goodbye"
end
class Foo
p @var #=> "hello"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment