Guest User

Untitled

a guest
Oct 17th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. fun main(args: Array<String>) = runBlocking {
  2. repeat(100000) {
  3. launch {
  4. delay(100)
  5. println("coroutine $it")
  6. }
  7. }
  8. }
Add Comment
Please, Sign In to add comment