blob: 1fa9dc46be50802ea8b13c6c9803c12e9b8f26d1 [file] [log] [blame]
/*
* Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
// This file was automatically generated from Delay.kt by Knit tool. Do not edit.
package kotlinx.coroutines.examples.exampleDelay03
import kotlinx.coroutines.*
import kotlinx.coroutines.flow.*
import kotlin.time.Duration.Companion.milliseconds
fun main() = runBlocking {
flow {
repeat(10) {
emit(it)
delay(110)
}
}.sample(200)
.toList().joinToString().let { println(it) } }