|  | ||
|---|---|---|
| .. | ||
| README.md | ||
| package.json | ||
		
			
				
				README.md
			
		
		
			
			
		
	
	kotlinx.coroutines
Library support for Kotlin coroutines in Kotlin/JS.
suspend fun main() = coroutineScope {
    launch { 
       delay(1000)
       println("Kotlin Coroutines World!") 
    }
    println("Hello")
}