```private fun blockingWork(i: Int) { Thre...
# arrow
g
Copy code
private fun blockingWork(i: Int) {
        Thread.sleep(1000)
        println("Work $i done [${Thread.currentThread().name}]")
    }