tree: e2a8a5917ed1228cc9917b17aff79e2977fac8de [path history] [tgz]
  1. package.json
  2. README.md
kotlinx-coroutines-core/js/npm/README.md

kotlinx.coroutines

Library support for Kotlin coroutines in Kotlin/JS.

suspend fun main() = coroutineScope {
    launch { 
       delay(1000)
       println("Kotlin Coroutines World!") 
    }
    println("Hello")
}

Documentation