here is the running code. tested. it does throw: `...
# coroutines
u
here is the running code. tested. it does throw:
Copy code
fun main(args: Array<String>) {
    runBlocking {
        val f = future {
            throw RuntimeException("Hello!")
        }
        f.await()
    }
}
👍 2