```launch { val future = async { veryLongComutat...
# coroutines
n
Copy code
launch {
  val future = async { veryLongComutation() }
  ...
  val res = future.await()
}