Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.md | D | 03-May-2024 | 541 | 20 | 15 | |
package.json | D | 03-May-2024 | 621 | 27 | 26 |
README.md
1# kotlinx.coroutines 2 3Library support for Kotlin coroutines in 4[Kotlin/JS](https://kotlinlang.org/docs/reference/js-overview.html). 5 6```kotlin 7suspend fun main() = coroutineScope { 8 launch { 9 delay(1000) 10 println("Kotlin Coroutines World!") 11 } 12 println("Hello") 13} 14``` 15 16## Documentation 17 18* [Guide to kotlinx.coroutines by example on JVM](https://kotlinlang.org/docs/reference/coroutines/coroutines-guide.html) (**read it first**) 19* [Full kotlinx.coroutines API reference](https://kotlin.github.io/kotlinx.coroutines) 20