``` suspend fun timeoutStuff(params: List<S...
# coroutines
w
Copy code
suspend fun timeoutStuff(params: List<String>, timeout: Long): String = withTimeout(timeout) {
        // some long thing
        "taco"
    }