yep. this one works: ``` launch(context) { ...
# coroutines
d
yep. this one works:
Copy code
launch(context) {
        try {
            log("before delay")
            delay(100)
        } finally {
            log("after delay")    
        }
    }