Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MasoudFallahpour/8936f0198315427d6890a4f39be2fee5 to your computer and use it in GitHub Desktop.
Save MasoudFallahpour/8936f0198315427d6890a4f39be2fee5 to your computer and use it in GitHub Desktop.
import kotlin.concurrent.thread
fun main() {
repeat(100_000) {
thread {
Thread.sleep(1000L)
println(".")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment