Skip to content

Instantly share code, notes, and snippets.

@KhomDrake
Last active January 30, 2022 15:58
Show Gist options
  • Save KhomDrake/bc4b58034927710238ff99010eec9d10 to your computer and use it in GitHub Desktop.
Save KhomDrake/bc4b58034927710238ff99010eec9d10 to your computer and use it in GitHub Desktop.
Coroutine Hello World Example
import kotlinx.coroutines.*
fun main() {
GlobalScope.launch {
delay(1000L)
println("World!")
}
println("Hello,")
Thread.sleep(2000)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment