-
-
Save pedrolopesme/fa05fdb7833ab5fdc9947624ab780618 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun main(args: Array<String>) { | |
val myList = listof(1,3,6,7) | |
// x deixa de ser declarado e vira somente "it" | |
val greaterThan5 = myList.count{ it > 5 } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment