Skip to content

Instantly share code, notes, and snippets.

@fitomad
Created January 21, 2019 08:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fitomad/d135e435b9726cabd448c7bf464adbf7 to your computer and use it in GitHub Desktop.
Save fitomad/d135e435b9726cabd448c7bf464adbf7 to your computer and use it in GitHub Desktop.
public enum Deportes
{
case futbol
case baloncesto
case tenis
}
// Vamos a ver cómo funciona esto...
let deportista = Deportes.futbol
switch deportista
{
case .futbol:
print("Jugador de fútbol")
case .baloncesto:
print("Juegas al baloncesto")
@unknown default:
print("Practicas otro tipo de deporte")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment