Created
October 17, 2018 18:53
-
-
Save mayojava/cb692b0eb80eccb8931cf54a6688741c to your computer and use it in GitHub Desktop.
This file contains 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
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