<@U33S3CR1A> You second example has this loop in `...
# coroutines
e
@rrader You second example has this loop in `main`:
Copy code
listOf(4, 9, 5).forEach {
        println(handle(it))
}
Which means: please, sequentially execute
handle(it)
for each
it
in the list of
4, 9, 5
. Just your regular sequential code, no coroutines. What result you expected from it?