Skip to content

Instantly share code, notes, and snippets.

@jamie
Created October 10, 2014 01:38
Show Gist options
  • Save jamie/2df4d7e03cf324565631 to your computer and use it in GitHub Desktop.
Save jamie/2df4d7e03cf324565631 to your computer and use it in GitHub Desktop.
>> class Base
>> def self.foo
>> puts "foo!"
>> end
>> end
=> nil
>>
?> class Sub < Base
>> end
=> nil
>>
?> Sub.foo
foo!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment