kotlinx-coroutines-core
v1.7.3
Published
Library support for Kotlin coroutines
Downloads
1,099
Readme
kotlinx.coroutines
Library support for Kotlin coroutines in Kotlin/JS.
suspend fun main() = coroutineScope {
launch {
delay(1000)
println("Kotlin Coroutines World!")
}
println("Hello")
}