<@U0BRK9HC5> commented on <@U0KBF8D7V>’s file <htt...
# coroutines
u
@gildor commented on @Paul Woitaschek’s file https://kotlinlang.slack.com/files/U0KBF8D7V/F874LC8BF/-.kt:
Copy code
(0..100).chunked(3).map { tasks ->
            tasks.map {
                async { mySuspendingTask() }
            }.map { defered ->
                job.await()
            }
        }