Alexjok
suspend fun test() { async { someWork() } }
gildor
suspend fun test() { coroutineScope { async { someWork() } } }
list.map { async { convert() } }.awaitAll()
A modern programming language that makes developers happier.