Skip to content

Instantly share code, notes, and snippets.

@EJSohn
Created May 2, 2018 11:52
Show Gist options
  • Save EJSohn/cb99f4dbfcaa60bc06a4eea85443c1bc to your computer and use it in GitHub Desktop.
Save EJSohn/cb99f4dbfcaa60bc06a4eea85443c1bc to your computer and use it in GitHub Desktop.
// Enumeration of type Fruit.
enum Fruit: Int {
case apple = 1000
case banana = 500
case grape = 2500
}
// declare variable.
let orderedFruit: Fruit = .apple
switch orderedFruit {
default:
print("\(orderedFruit.rawValue)원 주세요!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment