Skip to content

Instantly share code, notes, and snippets.

@leejarvis

leejarvis/blah Secret

Created February 21, 2012 08:53
Show Gist options
  • Save leejarvis/1a3305e50b1fc31f1159 to your computer and use it in GitHub Desktop.
Save leejarvis/1a3305e50b1fc31f1159 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 #=> "goodbye"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment