Hi I am testing coroutines. I want my code to run ...
# coroutines
b
Hi I am testing coroutines. I want my code to run in parallel, not waiting for a result. How am I suppose to do that? I 've searched the internet with no luck.. Thread in Slack Conversation
For short, starting your suspending function wrapped in
async {}
and then after all the concurrent coroutines are started calling
.await()
on all of them