Skip to content

Instantly share code, notes, and snippets.

@below
Created November 11, 2016 14:44
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 below/41165f7bf078e207a700f80455cfba40 to your computer and use it in GitHub Desktop.
Save below/41165f7bf078e207a700f80455cfba40 to your computer and use it in GitHub Desktop.
What the What?
import Foundation
let scheme : String! = "https" // "https"
let host = "example.com" // "example.com"
let urlString = "\(scheme)://\(host)" // "Optional("https")://example.com" // <-- WHAT?
let url = URL(string: urlString) // nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment