Skip to content

Instantly share code, notes, and snippets.

@yayaa
Created January 10, 2019 19:11
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 yayaa/5908cf092504ca3f3705c62b5736dd4e to your computer and use it in GitHub Desktop.
Save yayaa/5908cf092504ca3f3705c62b5736dd4e to your computer and use it in GitHub Desktop.
Improving the code - 4
fun main() {
getFruits()
.filter { it.name != null && !it.isRotten && it.color == Color.BLACK }
.forEach { println("Yay! It's an orange ${it.name}") }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment