Skip to content

Instantly share code, notes, and snippets.

@nolili
Created February 10, 2015 08:02
Show Gist options
  • Save nolili/6e209065d172945cb2a8 to your computer and use it in GitHub Desktop.
Save nolili/6e209065d172945cb2a8 to your computer and use it in GitHub Desktop.
Swift 1.2 if let...
var hello:String? = "Hello"
var goodbye:String? = "Goodbye"
// Swift 1.2
if let a = hello, b = goodbye {
println(a + " ," + b)
}
// Swift 1.1
if let a = hello {
if let b = goodbye{
println(a + " ," + b)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment