// This file was automatically generated from coroutines-basics.md by Knit tool. Do not edit. package kotlinx.coroutines.guide.exampleBasic06 import kotlinx.coroutines.* fun main() = runBlocking { repeat(50_000) { // launch a lot of coroutines launch { delay(5000L) print(".") } } }