Last active
May 22, 2019 11:40
-
-
Save AppleCEO/caa1c4b265419d5ced57cc9970798500 to your computer and use it in GitHub Desktop.
directionToHead
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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