```fun CoroutineScope.doFireAndForget(arg: Argumen...
# coroutines
k
Copy code
fun CoroutineScope.doFireAndForget(arg: Argument) = launch {
        delay(5000)
        fireAndForgetSuspendFunction(arg)

    }