• Home
Name Date Size #Lines LOC

..--

README.mdD03-May-2024541 2015

package.jsonD03-May-2024621 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://kotlin.github.io/kotlinx.coroutines)
20