Hi there. Should ``` // In CoroutineScope withCon...
# coroutines
d
Hi there. Should
Copy code
// In CoroutineScope
withContext(IO) { /*...*/ }
behave similar to
Copy code
// In CoroutineScope
withContext(coroutineContext + IO) { /*...*/ }
?
👌 2