I found the current one pretty hard to grasp when ...
# coroutines
b
I found the current one pretty hard to grasp when I looked up how to do 4 things in parallel and collect their results
r
What did you end up with, if I may ask?
b
Copy code
runBlocking {
   val first = async {callIt()}
   val second = async {callIt2()}
   calculateResult(first.await(), second.await())
}