1 // This file was automatically generated from coroutines-basics.md by Knit tool. Do not edit. 2 package kotlinx.coroutines.guide.exampleBasic06 3 4 import kotlinx.coroutines.* 5 <lambda>null6fun main() = runBlocking { 7 repeat(50_000) { // launch a lot of coroutines 8 launch { 9 delay(5000L) 10 print(".") 11 } 12 } 13 } 14