<lambda>null1// This file was automatically generated from flow.md by Knit tool. Do not edit. 2 package kotlinx.coroutines.guide.exampleFlow31 3 4 import kotlinx.coroutines.* 5 import kotlinx.coroutines.flow.* 6 7 fun simple(): Flow<Int> = (1..3).asFlow() 8 9 fun main() = runBlocking<Unit> { 10 try { 11 simple().collect { value -> println(value) } 12 } finally { 13 println("Done") 14 } 15 } 16