Skip to content

Instantly share code, notes, and snippets.

@jonnycaley
Last active April 24, 2020 15:02
Show Gist options
  • Save jonnycaley/0abe3c7d29f2b61d8a592de5c5714725 to your computer and use it in GitHub Desktop.
Save jonnycaley/0abe3c7d29f2b61d8a592de5c5714725 to your computer and use it in GitHub Desktop.
fun getAveragePrice(vehicle: Vehicle): Int {
return when (vehicle) {
is CAR -> {
20000
}
is MOTORBIKE -> {
10000
}
is VAN -> {
25000
}
is LORRY -> {
50000
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment