Just starting off with coroutines here. I came acr...
# coroutines
s
Just starting off with coroutines here. I came across the statement
. Unlike many other languages with similar capabilities, async and await are not keywords in Kotlin and are not even part of its standard library.
while browsing through videos and documentation on coroutines. But when we want to run suspend functions concurrently, don't we run them as
async{ doThis() }
, and then do
.await()
?