Skip to content

Instantly share code, notes, and snippets.

@scalone
Created November 5, 2010 19:05
Show Gist options
  • Save scalone/664617 to your computer and use it in GitHub Desktop.
Save scalone/664617 to your computer and use it in GitHub Desktop.
@@ha = 'ha'
class A
@ha = 'boom'
class << self
attr_accessor :ha
end
def self.my_method
"k" + self.ha
end
end
p @@ha
# "ha"
p A.ha
# "boom"
p A.my_method
# "kboom"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment