Something like this ``` public fun <T> runSy...
# coroutines
o
Something like this
Copy code
public fun <T> runSync(block: suspend () -> T): T =  BlockingCoroutine<T>(Here).also { block.startCoroutine(it) }.joinBlocking()