Skip to content

Instantly share code, notes, and snippets.

@edopelawi
Created September 13, 2016 14:59
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 edopelawi/89b8d08417c35920a41c39bd2e873938 to your computer and use it in GitHub Desktop.
Save edopelawi/89b8d08417c35920a41c39bd2e873938 to your computer and use it in GitHub Desktop.
A sample on unwrapping String optional using if let statement.
name = "Donald Duck"
if let validName = name {
print(createGreetings(sailorName: validName))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment