lukaswelte
10/12/2018, 3:16 PMimport kotlinx.coroutines.*
fun main() = runBlocking {
repeat(100_000) { // launch a lot of coroutines
launch {
delay(1000L)
print(".")
}
}
}
elizarov
10/12/2018, 3:18 PM