Coroutines are not blocking. If you `await` you do...
# coroutines
d
Coroutines are not blocking. If you
await
you don't block the thread. You suspend making the thread free for others.