LeoColman
GlobalScope.launch { val deferred = GlobalScope.async { while (true) { } } val result = withTimeout(100) { deferred.await() } println(result) }