Name Date Size #Lines LOC

..--

README.mdH A D25-Apr-2025544 2015

package.jsonH A D25-Apr-2025621 2726

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://kotlinlang.org/api/kotlinx.coroutines/)
20