Skip to content

Instantly share code, notes, and snippets.

@haikieu
Created June 26, 2018 07:43
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 haikieu/61e7c52e92e3e045e079ff8c3a1a47ec to your computer and use it in GitHub Desktop.
Save haikieu/61e7c52e92e3e045e079ff8c3a1a47ec to your computer and use it in GitHub Desktop.
Non-Sequential-Execution
print("Task 1")
DispatchQueue.main {
print("Task 2")
}
print("Task 3")
//What is the output?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment