hackerham
suspend fun <V> await(f: Future<V>): V = suspendWithCurrent... fun get_user(): Future<User> { ... } async { val user = await(get_user()) }