Exerosis
val ctx = currentCoroutineContext() val test = object : CoroutineScope { override val coroutineContext = ctx } task = test.launch(context) { block() }
coroutineScope { task = launch(context) }
ephemient
coroutineScope { task = launch { block() } }
block()
coroutineScope {}
Zach Klippenstein (he/him) [MOD]
A modern programming language that makes developers happier.