Last active
May 13, 2017 03:01
-
-
Save ezura/1f11ff10bfab02a58e442bd29e0f35e2 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
| else { | |
| if cond2 { | |
| } | |
| } | |
| // else の {} を省略して | |
| else if cond2 { | |
| } | |
| // else if 複数 | |
| if cond1 { | |
| } else { | |
| if cond2 { | |
| } else { | |
| if cond3 { | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment