<@U0DH2V0JK> I wrote my own top-level function tha...
# coroutines
s
@plastiv I wrote my own top-level function that accomplishes a ‘for-ever suspend’ (an infinite
delay
):
Copy code
suspend fun suspendForever(): Nothing = suspendCancellableCoroutine<Nothing> { /* Do nothing, never resume */ }