Skip to content

Instantly share code, notes, and snippets.

Created December 17, 2012 06:34
Show Gist options
  • Save anonymous/4316220 to your computer and use it in GitHub Desktop.
Save anonymous/4316220 to your computer and use it in GitHub Desktop.
irb(main):042:0> class NilClass
irb(main):043:1> def NilClass.new
irb(main):044:2> return 7
irb(main):045:2> end
irb(main):046:1> end
=> nil
irb(main):047:0> a = NilClass.new
=> 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment