Skip to content

Instantly share code, notes, and snippets.

@almaleh
Last active January 14, 2020 01:21
Show Gist options
  • Save almaleh/c2848041dcedf2bf15cc71244d6f3293 to your computer and use it in GitHub Desktop.
Save almaleh/c2848041dcedf2bf15cc71244d6f3293 to your computer and use it in GitHub Desktop.
let concurrent = DispatchQueue(label: "com.besher.concurrent", attributes: .concurrent)
concurrent.async {
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