tree: 5f298616b1bde2a5aac52f80110e269719dace33 [path history] [tgz]
  1. package.json
  2. README.md
kotlinx-coroutines-core/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