blob: dac1785a028b8af86f61cb4985de4b8eef2d787b [file] [log] [blame]
// This file was automatically generated from coroutines-guide.md by Knit tool. Do not edit.
package guide.basic.example06
import kotlinx.coroutines.experimental.*
fun main(args: Array<String>) = runBlocking<Unit> {
launch(CommonPool) {
repeat(1000) { i ->
println("I'm sleeping $i ...")
delay(500L)
}
}
delay(1300L) // just quit after delay
}