Files
2023-10-13 14:01:41 +00:00
..
2023-10-13 14:01:41 +00:00
2023-10-13 14:01:41 +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