t
Day 13
e
So in part 2 you don’t need to make an async block there. You could just keep your while loop and stuff as part of the
runBlocking { }
block because it’s still a coroutine scope.
🙏🏻 1
t
Hmmmm, let me try that.
Huh, neat!
I'll make that change and credit you on it. 🙂
Thanks!
e
No problem! Coroutines are designed to avoid explicit async-awaits and just look like blocking code unless you’re explicitly trying to do stuff in parallel 🙂