// This file was automatically generated from flow.md by Knit tool. Do not edit. package kotlinx.coroutines.guide.exampleFlow07 import kotlinx.coroutines.* import kotlinx.coroutines.flow.* fun main() = runBlocking { // Convert an integer range to a flow (1..3).asFlow().collect { value -> println(value) } }