Skip to content

Instantly share code, notes, and snippets.

@alvaroroyo
Created December 10, 2021 15:48
Show Gist options
  • Save alvaroroyo/ccadacb1f59b65112537b7660428a34f to your computer and use it in GitHub Desktop.
Save alvaroroyo/ccadacb1f59b65112537b7660428a34f to your computer and use it in GitHub Desktop.
func getSomethingFromBackground(completion: @escaping (String)->()) {
DispatchQueue.global().async {
completion("Hello world!")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment