Answer the question
In order to leave comments, you need to log in
Explain what the Kotlin code does?
fun main() = runBlocking {
launch {
delay(200L)
println("Hello 1")
}
coroutineScope {
launch {
delay(500L)
println("Hello 2")
}
delay(100L)
println("Hello 3")
}
println("Hello 4")
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question