Skip to content

Instantly share code, notes, and snippets.

@mattyohe
Created October 29, 2014 04:07
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 mattyohe/7df92ec63d19a876794d to your computer and use it in GitHub Desktop.
Save mattyohe/7df92ec63d19a876794d to your computer and use it in GitHub Desktop.
True/False not exhaustive.
var yesNo: Bool = true
switch (yesNo) {
case true:
println("True")
case false:
println("False")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment