Skip to content

Instantly share code, notes, and snippets.

@fitomad
Created November 19, 2018 09:22
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/4bc53deecac460bfa4943dfaa9359b4d to your computer and use it in GitHub Desktop.
Save fitomad/4bc53deecac460bfa4943dfaa9359b4d to your computer and use it in GitHub Desktop.
// Podemos crearlo vacío...
var inicio = [String]()
// ...repitiendo un mismo elemento un número determinado de veces...
var sheldonLlama = [String](repeating: "Toc", count: 3)
print(sheldonLlama)
print("Penny")
print(sheldonLlama)
print("Penny")
print(sheldonLlama)
print("Penny")
// O asignándole valores directamente.
var personajes = [ "Penny", "Leonard", "Sheldon", "Raj", "Howard" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment