Whet's the difference between these ways of launch...
# coroutines
c
Whet's the difference between these ways of launching a coroutine?
s
The first is a function, the second one a statement (expression)
The first runs with any given CoroutineScope. The second one is a particular one, that has an empty context.
👍 1
c
perfect, I was confused... took me 1-2 minuts to figure out your answer then it clicked.