Skip to content

Instantly share code, notes, and snippets.

@LucianoPAlmeida
Last active July 20, 2019 20:57
Show Gist options
  • Save LucianoPAlmeida/e13c9b424a19cc985aaa2709ee83d699 to your computer and use it in GitHub Desktop.
Save LucianoPAlmeida/e13c9b424a19cc985aaa2709ee83d699 to your computer and use it in GitHub Desktop.
Kotlin coroutines
fun hi() = sequence { // this: SequenceScope<String>
yield("Hi")
yield(":))")
}
val words = hi()
for (word in words) {
println(word)
}
//Result:
// Hi
// :))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment