android13/external/kotlinx.coroutines/kotlinx-coroutines-core/npm
liiir1985 7f62dcda9f initial 2024-06-22 20:45:49 +08:00
..
README.md initial 2024-06-22 20:45:49 +08:00
package.json initial 2024-06-22 20:45:49 +08:00

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