1 /* 2 * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 5 // This file was automatically generated from coroutines-basics.md by Knit tool. Do not edit. 6 package kotlinx.coroutines.guide.exampleBasic06 7 8 import kotlinx.coroutines.* 9 <lambda>null10fun main() = runBlocking { 11 repeat(50_000) { // launch a lot of coroutines 12 launch { 13 delay(5000L) 14 print(".") 15 } 16 } 17 } 18