unplugged-system/external/kotlinx.coroutines/kotlinx-coroutines-core/npm
2025-10-06 13:59:42 +00:00
..
package.json Initial commit: AOSP 14 with modifications for Unplugged OS 2025-10-06 13:59:42 +00:00
README.md Initial commit: AOSP 14 with modifications for Unplugged OS 2025-10-06 13:59:42 +00:00

kotlinx.coroutines

Library support for Kotlin coroutines in Kotlin/JS.

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

Documentation