Skip to content

Instantly share code, notes, and snippets.

@k0nserv
Created June 5, 2014 15:50
Show Gist options
  • Save k0nserv/7807a28b38b5ef8a9bc4 to your computer and use it in GitHub Desktop.
Save k0nserv/7807a28b38b5ef8a9bc4 to your computer and use it in GitHub Desktop.
Conccurency in swift?
println("Before async")
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0)
, {
println("async")
})
println("After async")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment