Skip to content

Instantly share code, notes, and snippets.

@almaleh
Last active January 14, 2020 01:21
Show Gist options
  • Save almaleh/0be9c677a68931c08a90e0ff46f7a1fe to your computer and use it in GitHub Desktop.
Save almaleh/0be9c677a68931c08a90e0ff46f7a1fe to your computer and use it in GitHub Desktop.
let concurrent = DispatchQueue(label: "com.besher.concurrent", attributes: .concurrent)
concurrent.sync {
for _ in 0..<5 { print("🔵") }
}
concurrent.async {
for _ in 0..<5 { print("🔴") }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment