Skip to content

Instantly share code, notes, and snippets.

@arwagner
Created October 21, 2011 01:15
Show Gist options
  • Save arwagner/1302860 to your computer and use it in GitHub Desktop.
Save arwagner/1302860 to your computer and use it in GitHub Desktop.
>> class Foo; def a; end; end
=> nil
>> class Bar < Foo; def a; super; end; end
=> nil
>> Bar.new.a
=> nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment