Skip to content

Instantly share code, notes, and snippets.

@elnaqah
Created January 27, 2020 13:31
Show Gist options
  • Save elnaqah/ecbeb0aac42a1d3ff60221ff0b0ef3fa to your computer and use it in GitHub Desktop.
Save elnaqah/ecbeb0aac42a1d3ff60221ff0b0ef3fa to your computer and use it in GitHub Desktop.
class Job {
func run(completion: @escaping () -> Void) {
sleep(5)
completion()
}
}
let job = Job()
print("A")
job.run {
print("B")
}
print("C")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment