Skip to content

Instantly share code, notes, and snippets.

@gregorymfoster
Created January 8, 2018 05:58
Show Gist options
  • Save gregorymfoster/71cb708df9307f0015ed1ffd3dc3233d to your computer and use it in GitHub Desktop.
Save gregorymfoster/71cb708df9307f0015ed1ffd3dc3233d to your computer and use it in GitHub Desktop.
Unwrapping Optional Swift Value
if let sideLength = optionalSquare?.sideLength {
println("sideLength is not nil")
} else {
println("sidelength is nil")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment