Skip to content

Instantly share code, notes, and snippets.

@agoiabel
Last active January 15, 2018 09:47
Show Gist options
  • Save agoiabel/615e44ec0695d4d20499925dda9dd55d to your computer and use it in GitHub Desktop.
Save agoiabel/615e44ec0695d4d20499925dda9dd55d to your computer and use it in GitHub Desktop.
enum AppleDevice {
case iPad
case iPhone
case AppleTv
case AppleWatch
func description() -> String {
return "This is an apple device"
}
}
AppleDevice.iPad.description() //will return "This is an apple device"
AppleDevice.iPhone.description() //will return "This is an apple device"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment