Skip to content

Instantly share code, notes, and snippets.

@Nublo
Created February 5, 2020 15:07
Show Gist options
  • Save Nublo/3715f8486663543db8f8fcdc6a2c8163 to your computer and use it in GitHub Desktop.
Save Nublo/3715f8486663543db8f8fcdc6a2c8163 to your computer and use it in GitHub Desktop.
val job = launch(Dispatchers.Default) {
repeat (5) {
println("Hello $it")
delay(500)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment