Last active
September 6, 2017 18:13
-
-
Save cgoldsby/2e96495dfc0ba63f962a6d30e11e3761 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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