actually coro is: ``` launch(CommonPool) { ...
# coroutines
r
actually coro is:
Copy code
launch(CommonPool) {
        println("Launching")
        val o = Test.test()
        println(o)

        println("Finished")
    }