package it.mpp0 import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.Deferred import kotlinx.coroutines.async actual fun CoroutineScope.runBlocking(block: suspend () -> T): T { TODO("Not yet implemented") } fun CoroutineScope.customAsync(block: suspend () -> T): Deferred { return async { block() } }