Skip to content

Instantly share code, notes, and snippets.

@AppleCEO
Last active October 1, 2021 09:41
Show Gist options
  • Save AppleCEO/71b77cfba9202f3dcee1dcb9ae717774 to your computer and use it in GitHub Desktop.
Save AppleCEO/71b77cfba9202f3dcee1dcb9ae717774 to your computer and use it in GitHub Desktop.
enum RestaurantGrade: Int {
case premium
case superBaemin
case general
func getName() -> String {
switch self {
case .premium: return "프리미엄"
case .superBaemin: return "슈퍼배민"
case .general: return "일반"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment