Skip to content

Instantly share code, notes, and snippets.

@toctan
Created December 16, 2013 16:41
Show Gist options
  • Save toctan/7990091 to your computer and use it in GitHub Desktop.
Save toctan/7990091 to your computer and use it in GitHub Desktop.
@@foo = 'foo'
Object.class_variable_get(:@@foo) # => "foo"
class Bar
def self.foo
@@foo
end
end
Bar.foo # => "foo"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment