Skip to content

Instantly share code, notes, and snippets.

@NachoSoto
Created August 17, 2015 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NachoSoto/830d1c077be60143680e to your computer and use it in GitHub Desktop.
Save NachoSoto/830d1c077be60143680e to your computer and use it in GitHub Desktop.
func f(a: Bool, b: Bool) {
switch (a, b) {
case (false, false):
break
case (false, true):
break
case (true, false):
break
case (true, true):
break
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment