Created
March 2, 2016 03:16
-
-
Save HaiTo/c9f373a1ca637407a44c 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
# OK | |
age = case | |
when condition | |
p 'hoge' | |
end | |
# OK | |
piyo = | |
case | |
when condition | |
p 'hoge' | |
end | |
# NG | |
hoge = case | |
when condition | |
p 'hoge' | |
end |
Author
HaiTo
commented
Mar 2, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment