Skip to content

Instantly share code, notes, and snippets.

@ezura
Last active May 13, 2017 03:01
Show Gist options
  • Select an option

  • Save ezura/1f11ff10bfab02a58e442bd29e0f35e2 to your computer and use it in GitHub Desktop.

Select an option

Save ezura/1f11ff10bfab02a58e442bd29e0f35e2 to your computer and use it in GitHub Desktop.
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