blob: c5da677bb10656d0195fa91e2b690833f87a61e9 [file] [log] [blame]
import kotlinx.coroutines.*
suspend fun doWorld() = coroutineScope {
launch {
delay(1000L)
println("World!")
}
println("Hello")
}