-
-
Save cipolleschi/3f05fde3ba31be1f5803879b45303953 to your computer and use it in GitHub Desktop.
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
| enum Dog { | |
| case siberianHusky | |
| case germanSheperd | |
| } | |
| enum Cat { | |
| case siamese | |
| case abyssian | |
| } | |
| enum Pet { | |
| case cat(breed: Cat) | |
| case dog(breed: Dog) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment