Created
November 9, 2011 07:52
-
-
Save mactkg/1350772 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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