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/4d6e4ed9afe014e3b1c9f004957bcd73 to your computer and use it in GitHub Desktop.
Save cyberespia/4d6e4ed9afe014e3b1c9f004957bcd73 to your computer and use it in GitHub Desktop.
Ejemplos de funciones en Swift
func imprimirMensaje(mensaje: String, veces: Int) {
for i in 0..<veces {
print("\(i) \(mensaje)")
}
}
imprimirMensaje(mensaje: "Hola baby", veces: 3)
// 0 Hola baby
// 1 Hola baby
// 2 Hola baby
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment