Skip to content

Instantly share code, notes, and snippets.

@scalone
Created November 6, 2010 22:41
Show Gist options
  • Save scalone/665775 to your computer and use it in GitHub Desktop.
Save scalone/665775 to your computer and use it in GitHub Desktop.
class A
@@ha = 'a'
def self.ha
@@ha
end
end
class B < A
@@ha = 'b'
end
A.ha
#=> 'b'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment