Darren Gu
07/30/2020, 7:00 PMfun main() = runBlocking {
    test()
}
suspend fun test() {
    val job = coroutineScope {
        launch {
            delay(5000)
        }
    }
    println("job = $job")
}fatih
07/30/2020, 7:02 PMfatih
07/30/2020, 7:05 PMDarren Gu
07/30/2020, 7:06 PMDarren Gu
07/30/2020, 7:06 PMDarren Gu
07/30/2020, 7:06 PMfatih
07/30/2020, 7:08 PMDarren Gu
07/30/2020, 7:08 PMTijl
07/30/2020, 7:10 PMcoroutineScopecoroutineScopethisDarren Gu
07/30/2020, 7:12 PMTijl
07/30/2020, 7:15 PMCoroutineScopecoroutineScopethisoctylFractal
07/30/2020, 7:16 PMcoroutineScope {
  val job = launch { delay(5000) }
 println("job = $job")
}Tijl
07/30/2020, 7:17 PMTijl
07/30/2020, 7:19 PMcoroutineScope { this.coroutineContext }Darren Gu
07/30/2020, 7:24 PMoctylFractal
07/30/2020, 7:28 PMoctylFractal
07/30/2020, 7:28 PMcoroutineContextDarren Gu
07/30/2020, 7:31 PMoctylFractal
07/30/2020, 7:33 PMCoroutineScope(coroutineContext)coroutineScopecoroutineContextJobDarren Gu
07/30/2020, 7:35 PMDarren Gu
07/30/2020, 7:36 PMoctylFractal
07/30/2020, 7:40 PMDarren Gu
07/30/2020, 7:41 PM