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/e1e72a5e96f795b6b0e22ce65cd9ec25 to your computer and use it in GitHub Desktop.

Select an option

Save cipolleschi/e1e72a5e96f795b6b0e22ce65cd9ec25 to your computer and use it in GitHub Desktop.
let myPet: Pet = .dog(breed: .siberianHusky)
switch myPet {
case .dog(.siberianHusky):
print("I have a Husky!")
case .dog(.germanSheperd):
print("I have a German Sheperd!")
case .cat(.siamese):
print("I have a Siamese Cat!")
case .cat(.abyssian):
print("I have an Abyssian Cat !")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment