Skip to content

Instantly share code, notes, and snippets.

@AppleCEO
Last active May 22, 2019 11:40
Show Gist options
  • Select an option

  • Save AppleCEO/caa1c4b265419d5ced57cc9970798500 to your computer and use it in GitHub Desktop.

Select an option

Save AppleCEO/caa1c4b265419d5ced57cc9970798500 to your computer and use it in GitHub Desktop.
directionToHead
var directionToHead: CompassPoint
directionToHead = .south
switch directionToHead {
case .north:
print("Lots of planets have a north")
case .south:
print("Watch out for penguins")
case .east:
print("Where the sun rises")
case .west:
print("Where the skies are blue")
}
// Prints "Watch out for penguins"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment