Skip to content

Instantly share code, notes, and snippets.

@patrickcousins
Created November 3, 2019 03:29
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/41a560077b0498d943c678f7b6de796c to your computer and use it in GitHub Desktop.
Save patrickcousins/41a560077b0498d943c678f7b6de796c to your computer and use it in GitHub Desktop.
fun calculateDiscount(person: Person) : Int {
return when {
over65(person) -> 20
under13(person) -> 10
isRich(person) -> 0
else -> 5
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment