Skip to content

Instantly share code, notes, and snippets.

@piyushdec
Last active December 21, 2018 18:58
Show Gist options
  • Select an option

  • Save piyushdec/b6478d04322a0cb8f8304e9e005d79e8 to your computer and use it in GitHub Desktop.

Select an option

Save piyushdec/b6478d04322a0cb8f8304e9e005d79e8 to your computer and use it in GitHub Desktop.
// mercury = 1, venus = 2, ... neptune = 8
enum Planet: Int {
case mercury = 1, venus, earth, mars, jupiter, saturn, uranus, neptune
}
// North = "North", ... West = "West"
enum CompassPoint: String {
case north, south, east, west
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment