<lambda>null1// This file was automatically generated from flow.md by Knit tool. Do not edit. 2 package kotlinx.coroutines.guide.exampleFlow16 3 4 import kotlinx.coroutines.* 5 import kotlinx.coroutines.flow.* 6 import kotlin.system.* 7 8 fun simple(): Flow<Int> = flow { 9 for (i in 1..3) { 10 delay(100) // pretend we are asynchronously waiting 100 ms 11 emit(i) // emit next value 12 } 13 } 14 <lambda>null15fun main() = runBlocking<Unit> { 16 val time = measureTimeMillis { 17 simple().collect { value -> 18 delay(300) // pretend we are processing it for 300 ms 19 println(value) 20 } 21 } 22 println("Collected in $time ms") 23 } 24