my simple test code: ``` suspend fun subscribe(...
# flow
i
my simple test code:
Copy code
suspend fun subscribe() {
        (1..3).asFlow()
            .map { test(it) }.collect()
    }
    fun  test(i: Int) = i * 3