Skip to content

Instantly share code, notes, and snippets.

@jorgecasariego
Created February 18, 2020 13:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jorgecasariego/deb0a2e3248f00d591680ab3b62c1fed to your computer and use it in GitHub Desktop.
Save jorgecasariego/deb0a2e3248f00d591680ab3b62c1fed to your computer and use it in GitHub Desktop.
fun main() {
println("Start")
Thread {
Thread.sleep(3000L)
println("Hello")
}.start()
println("Done")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment