suspend fun expensiveComputation(res: MutableList<String>) { delay(1000L) res.add("word!") } We can use a launch coroutine that will execute ...
確定! 回上一頁