`things.map { compute(it) }.awaitAll()` is nicer t...
# coroutines
p
things.map { compute(it) }.awaitAll()
is nicer than
allOf(things.map { compute(it) }).await()
though