Пока что-то еще работает, то текущий CoroutineScop...
# russian
e
Пока что-то еще работает, то текущий CoroutineScope не завершится:
Copy code
fun testSomething() = runBlocking { // <-- CoroutineScope 
     // do some stuff
    launch { ... } // if this thing still works, scope will not terminate
    // .... 
}