Skip to content

Instantly share code, notes, and snippets.

@cipolleschi
Last active January 7, 2021 09:02
Show Gist options
  • Select an option

  • Save cipolleschi/3f05fde3ba31be1f5803879b45303953 to your computer and use it in GitHub Desktop.

Select an option

Save cipolleschi/3f05fde3ba31be1f5803879b45303953 to your computer and use it in GitHub Desktop.
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