Skip to content

Instantly share code, notes, and snippets.

@joanmolinas
Last active August 29, 2015 14:17
Show Gist options
  • Save joanmolinas/bbcfde29b8ced2073fb5 to your computer and use it in GitHub Desktop.
Save joanmolinas/bbcfde29b8ced2073fb5 to your computer and use it in GitHub Desktop.
for i in 1...10{
switch (i) {
case let x where x%2 == 0:
println("even")
case let x where x%2 != 0:
println("odd")
default:
break;
}
}
//OR
for i in 1...10{
switch (i) {
case let x where x%2 == 0:
println("even")
default:
println("odd")
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment