Skip to content

Instantly share code, notes, and snippets.

@pablocattaneo
Created January 8, 2026 13:19
Show Gist options
  • Select an option

  • Save pablocattaneo/248e6df09cb8b723d8b5af7ea319689c to your computer and use it in GitHub Desktop.

Select an option

Save pablocattaneo/248e6df09cb8b723d8b5af7ea319689c to your computer and use it in GitHub Desktop.
fruits := [4]string{"Apple", "Banana", "Orange", "Grapes"}
for index, fruit := range fruits {
fmt.Println(position, fruitName)
}
for i, v := range fruits {
fmt.Println(i, v)
}
for position, fruitName := range fruits {
fmt.Println(position, fruitName)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment