The problem is, if you block inside a coroutine, y...
# coroutines
d
The problem is, if you block inside a coroutine, you have no idea where it will block. Calling the
suspend
function might block, calling
await
may block. Any other suspend points may block. Overall, terrible things happen...