<@U22JFPEVC> As a matter of style, I'd recommend t...
# coroutines
e
@hackerham As a matter of style, I'd recommend to define coroutine builder with an additional optional dispatcher parameters. For example, the
background{}
I gave above would be better defined as:
fun background(dispatcher: ContinuationDispatcher? = null, block: suspend () -> Unit)