Created
January 28, 2016 03:15
-
-
Save geykel/7692ed4ef46e3d9fa6aa 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
| switch diaDeLaSemana { | |
| case .Lunes: | |
| print("es lunes") | |
| case .Martes: | |
| print("es martes") | |
| case .Miercoles: | |
| print("es miércoles") | |
| case .Jueves: | |
| print("es jueves") | |
| case .Viernes: | |
| print("es viernes") | |
| case .Sabado: | |
| print("es sábado") | |
| case .Domingo: | |
| print("es domingo") | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment