Created
January 27, 2020 13:31
-
-
Save elnaqah/ecbeb0aac42a1d3ff60221ff0b0ef3fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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