1 // This file was automatically generated from coroutines-basics.md by Knit tool. Do not edit. 2 package kotlinx.coroutines.guide.exampleBasic03 3 4 import kotlinx.coroutines.* 5 <lambda>null6fun main() = runBlocking { 7 doWorld() 8 } 9 doWorldnull10suspend fun doWorld() = coroutineScope { // this: CoroutineScope 11 launch { 12 delay(1000L) 13 println("World!") 14 } 15 println("Hello") 16 } 17