Skip to content

Instantly share code, notes, and snippets.

@cyberespia
Last active November 8, 2017 05:26
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 cyberespia/87499d2b196b33e133d85bae8eba38da to your computer and use it in GitHub Desktop.
Save cyberespia/87499d2b196b33e133d85bae8eba38da to your computer and use it in GitHub Desktop.
Condicional Switch en swift
let edad = 75
switch edad {
case 0:
print("recien nacido")
case 1...12:
print("Niño")
case 13...18:
print("Adolescente")
case ...65: // One-Sided Ranges solo en Swift 4.
print("Adulto")
default:
print("Viejo")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment