There is a big difference between async and suspen...
# coroutines
e
There is a big difference between async and suspend. Don't confuse the two, please. Suspend is sequential, so it is safe even as default even if implicit. Async, on the other hand, implies parallel execution. That one should be clearly marked. Kotlin supports both styles. Use the one your prefer.