Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save af2905/e12783102fd86e77f78bc6b4711366fd to your computer and use it in GitHub Desktop.
Save af2905/e12783102fd86e77f78bc6b4711366fd to your computer and use it in GitHub Desktop.
tricky questions_function_code_child_coroutine
val myScope: CoroutineScope = CoroutineScope(context = Job())
myScope.launch {
delay(500L)
println("A")
launch {
delay(1000L)
println("B")
}
println("С")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment