Skip to content

Instantly share code, notes, and snippets.

@jdunck
Created February 6, 2013 03:33
Show Gist options
  • Select an option

  • Save jdunck/4720015 to your computer and use it in GitHub Desktop.

Select an option

Save jdunck/4720015 to your computer and use it in GitHub Desktop.
wat
irb(main):001:0> def x()
irb(main):002:1> return 2
irb(main):003:1> end
=> nil
irb(main):004:0> x = 1
=> 1
irb(main):005:0> x
=> 1
irb(main):006:0> x()
=> 2
irb(main):007:0> x
=> 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment