Skip to content

Instantly share code, notes, and snippets.

@jcmuller
Created May 16, 2013 18:03
Show Gist options
  • Save jcmuller/5593725 to your computer and use it in GitHub Desktop.
Save jcmuller/5593725 to your computer and use it in GitHub Desktop.
irb(main):001:0> class A; def self.b; puts "A"; end; end
=> nil
irb(main):002:0> class B < A; end
=> nil
irb(main):003:0> B.b
A
=> nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment