Skip to content

Instantly share code, notes, and snippets.

@alokomkar
Created October 21, 2022 02:14
Show Gist options
  • Select an option

  • Save alokomkar/230460b08b96af4580d44685603611a8 to your computer and use it in GitHub Desktop.

Select an option

Save alokomkar/230460b08b96af4580d44685603611a8 to your computer and use it in GitHub Desktop.
Suspending functions
fun main() = runBlocking { // this: CoroutineScope
launch { doWorld() }
println("Hello")
}
// this is your first suspending function
suspend fun doWorld() {
delay(1000L)
println("World!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment