eg ``` fun something() = async { val result = b...
# coroutines
g
eg
Copy code
fun something() = async {
  val result = bigCompuitationThatTakesCallback(a, b, callback = {
    suspend() //currently compiler error: "suspension functions can only be called within coroutine body"
  });
}