Skip to content

Instantly share code, notes, and snippets.

@mayojava
Created October 17, 2018 19:00
Show Gist options
  • Save mayojava/281c623224c5fe90a08e1182614bc4c7 to your computer and use it in GitHub Desktop.
Save mayojava/281c623224c5fe90a08e1182614bc4c7 to your computer and use it in GitHub Desktop.
fun main(args: Array<String>) = runBlocking {
launch {
delay(1_000)
println("from launch coroutine body")
}
println("from runblocking")
}
//print
from runblocking
from launch coroutine body
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment