purezen
08/26/2025, 1:27 PMimport kotlinx.coroutines.*
fun main() {
println("Weather forecast")
delay(1000)
println("Sunny")
}
Chrimaeon
08/26/2025, 3:55 PMdelay
to work. https://kotlinlang.org/docs/coroutines-overview.htmlHarish Kabilan
08/26/2025, 4:28 PMsuspend fun main() {
println("Weather forecast")
delay(1000)
println("Sunny")
}
change the function to suspend functionJobby
08/27/2025, 3:15 PM