Skip to content

Instantly share code, notes, and snippets.

@laevandus
Created September 8, 2023 08:47
Show Gist options
  • Save laevandus/3046cd08fc67e859a16ef788af08c0a8 to your computer and use it in GitHub Desktop.
Save laevandus/3046cd08fc67e859a16ef788af08c0a8 to your computer and use it in GitHub Desktop.
func start() {
defer { print("1") }
defer { print("2") }
print(#function)
}
// Returns:
// start()
// 2
// 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment