Skip to content

Instantly share code, notes, and snippets.

@jacobsapps
Created October 22, 2025 12:29
Show Gist options
  • Select an option

  • Save jacobsapps/3ee44336df713c4a390e498a7d37f65c to your computer and use it in GitHub Desktop.

Select an option

Save jacobsapps/3ee44336df713c4a390e498a7d37f65c to your computer and use it in GitHub Desktop.
let thread = Thread {
print("NSThread starting...")
Thread.exit() // exit thread internally
print("Will never be printed")
}
thread.start()
thread.cancel() // cancel thread externally
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment