Created
February 22, 2016 00:02
-
-
Save taisyo7333/d86e57c2adf4ea90b56f to your computer and use it in GitHub Desktop.
Ruby 悩んだこと # 1
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
true || y = 1 | |
p y # => nil |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
以下のように勘違いしていた。
y = 1の部分は評価されないため、
p y
で例外が発生する。
しかし、実際は nil