Guest User

Untitled

a guest
Dec 10th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. contactos, err := obtenerContactos()
  2. if err != nil {
  3. fmt.Printf("Error obteniendo contactos: %v", err)
  4. return
  5. }
  6. for _, contacto := range contactos {
  7. fmt.Printf("%v\n", contacto)
  8. }
Add Comment
Please, Sign In to add comment