Created
November 3, 2019 03:27
-
-
Save patrickcousins/569f15d3b7a4d83cc0758255cd8c61f0 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
private fun over65(person: Person) : Boolean { | |
return person.age > 65 | |
} | |
private fun under13(person: Person): Boolean { | |
return person.age < 13 | |
} | |
private fun isRich(person: Person) : Boolean { | |
return person.income > 100_000 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment