xref: /aosp_15_r20/external/kotlinx.coroutines/integration-testing/smokeTest/src/commonMain/kotlin/Sample.kt (revision 7a7160fed73afa6648ef8aa100d4a336fe921d9a)
1 import kotlinx.coroutines.*
2 
doWorldnull3 suspend fun doWorld() = coroutineScope {
4     launch {
5         delay(1000L)
6         println("World!")
7     }
8     println("Hello")
9 }
10