`async` is what is called `async*` in the code abo...
# coroutines
e
async
is what is called
async*
in the code above. In Kotlin you’d write
Copy code
fun greeting(name: String): Future<String> = async { … }