Skip to content

Instantly share code, notes, and snippets.

@RoyalIcing
Created March 17, 2016 21:34
Show Gist options
  • Save RoyalIcing/a803be11ee5b7ca7e059 to your computer and use it in GitHub Desktop.
Save RoyalIcing/a803be11ee5b7ca7e059 to your computer and use it in GitHub Desktop.
enum Fruit {
case apple, pear, orange, plum
}
extension Fruit {
var cents: Int {
return switch self [
.apple: 70,
.pear: 85,
.orange: 40,
.plum: 120
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment