Skip to content

Instantly share code, notes, and snippets.

@mayojava
Created October 17, 2018 18:53
Show Gist options
  • Save mayojava/cb692b0eb80eccb8931cf54a6688741c to your computer and use it in GitHub Desktop.
Save mayojava/cb692b0eb80eccb8931cf54a6688741c to your computer and use it in GitHub Desktop.
fun main(args: Array<String>) = runBlocking {
repeat(100000) {
launch {
delay(100)
println("coroutine $it")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment