The implementation of `runSuspending` will be some...
# coroutines
e
The implementation of
runSuspending
will be somewhat like:
Copy code
fun runSuspending(context: CoroutineContext = EmptyContext, block: suspend () -> Unit) {
    val actualContext = currentContext + context
    // now use actualContext to start coroutine
}