<lambda>null1 // This file was automatically generated from flow.md by Knit tool. Do not edit. 2 package kotlinx.coroutines.guide.exampleFlow01 3 4 fun simple(): List<Int> = listOf(1, 2, 3) 5 6 fun main() { 7 simple().forEach { value -> println(value) } 8 } 9