the problem here is that coroutineScope is blockin...
# coroutines
n
the problem here is that coroutineScope is blocking until all the child coroutines are running, so if you run
repeat(1000) { loadAndCombine() }
they won’t run in parallel, but will wait until the loadAndCombine() returns before continuing