Bernhard
suspend fun x() = delay(200)
suspend fun x() = coroutineScope { delay(200) }
Joffrey
coroutineScope { ... }
A modern programming language that makes developers happier.