Python: ``` async def foo(): x = await bar() `...
# coroutines
e
Python:
Copy code
async def foo():
    x = await bar()
Kotlin:
Copy code
fun foo() = async {
    val x = bar().await()
}