theapache64
CoroutineScope(<http://Dispatchers.IO|Dispatchers.IO>).launch { launch { println("A") delay(5000) println("B") } launch(context = Job()) { delay(1000) throw IOException() } }
B
Job()
Sam
Job
A modern programming language that makes developers happier.