Skip to content

Instantly share code, notes, and snippets.

@khekrn
Created August 30, 2021 05:38
Show Gist options
  • Save khekrn/c5fdf1c7d2d75c601100d262c2083090 to your computer and use it in GitHub Desktop.
Save khekrn/c5fdf1c7d2d75c601100d262c2083090 to your computer and use it in GitHub Desktop.
Coroutines are lightweight
import kotlinx.coroutines.*
//Start
fun main() = runBlocking {
repeat(100_00_00){ // launches one million coroutines
launch{
delay(10000) // Wait for 10 Seconds
print(".")
}
}
}
//End
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment