Challenge: Coroutine Scope Functions
Explore how to manage Kotlin coroutines with scope functions by writing a suspend test that uses withTimeout to cancel execution after 1.4 seconds. Understand timing behavior through printed output delays and prepare to deepen your coroutine control skills.
Problem
Write a suspend test function using withTimeout that will time out after 1.4 seconds, and where the body of ...