Skip to content

Instantly share code, notes, and snippets.

@jaozinfs
Created June 7, 2022 19:30
Show Gist options
  • Save jaozinfs/3dab9785e66c9aad246d147baef92e30 to your computer and use it in GitHub Desktop.
Save jaozinfs/3dab9785e66c9aad246d147baef92e30 to your computer and use it in GitHub Desktop.
fun main() = runBlocking {
val job = launch {
delay(2000)
print("Completed Job")
}
println("Finish")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment