Join Slack
Powered by
Python: ``` async def foo(): x = await bar() `...
# coroutines
e
elizarov
10/19/2017, 10:51 AM
Python:
Copy code
async def foo(): x = await bar()
Kotlin:
Copy code
fun foo() = async { val x = bar().await() }
Open in Slack
Previous
Next