I’m trying to play with coroutines with 1.1M2, spe...
# eap
i
I’m trying to play with coroutines with 1.1M2, specifically:
Copy code
val sequence = generate<Int> {
        for (i in 1..5) {
            yield(i)
        }
    }