Skip to content

Instantly share code, notes, and snippets.

@cgoldsby
Last active September 6, 2017 18:13
Show Gist options
  • Save cgoldsby/2e96495dfc0ba63f962a6d30e11e3761 to your computer and use it in GitHub Desktop.
Save cgoldsby/2e96495dfc0ba63f962a6d30e11e3761 to your computer and use it in GitHub Desktop.
func myFunction() {
defer { print("j/k... Now, I am done") }
return print("All done")
}
myFunction()
// Output:
// All done
// j/k... Now, I am done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment