Skip to content

Instantly share code, notes, and snippets.

@patrickcousins
Created November 3, 2019 03:27
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 patrickcousins/569f15d3b7a4d83cc0758255cd8c61f0 to your computer and use it in GitHub Desktop.
Save patrickcousins/569f15d3b7a4d83cc0758255cd8c61f0 to your computer and use it in GitHub Desktop.
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