Skip to content

Instantly share code, notes, and snippets.

@mactkg
Created November 9, 2011 07:52
Show Gist options
  • Save mactkg/1350772 to your computer and use it in GitHub Desktop.
Save mactkg/1350772 to your computer and use it in GitHub Desktop.
irb(main):003:0> if nil
irb(main):004:1> print hoge
irb(main):005:1> end
=> nil
irb(main):006:0> if !nil
irb(main):007:1> print hoge
irb(main):008:1> end
100=> nil
irb(main):009:0> if 1
irb(main):010:1> print hoge
irb(main):011:1> end
100=> nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment