Skip to content

Instantly share code, notes, and snippets.

@edopelawi
Last active September 13, 2016 14:55
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/3b3d8d047ef0862c9bf6780040f24d25 to your computer and use it in GitHub Desktop.
Save edopelawi/3b3d8d047ef0862c9bf6780040f24d25 to your computer and use it in GitHub Desktop.
An sample on nil-checking before force-unwrapping a String optional.
if name != nil {
print(createGreetings(sailorName: name!))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment