Library support for Kotlin coroutines
npm install kotlinx-coroutines-coreLibrary support for Kotlin coroutines in
Kotlin/JS.
``kotlin``
suspend fun main() = coroutineScope {
launch {
delay(1000)
println("Kotlin Coroutines World!")
}
println("Hello")
}
* Guide to kotlinx.coroutines by example on JVM (read it first)
* Full kotlinx.coroutines API reference