Last active
October 16, 2016 09:52
-
-
Save SebastianBoldt/61f575d41b2a5726c61937661b374723 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let x: String? = "Hello Optional" | |
switch x { | |
case .some(let value): print("Optional has an value of \(value)") | |
case .none: print("nothing stored inside the enum") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment