Lista de loop Golang
a := []string{"Foo", "Bar"}
for i, s := range a {
fmt.Println(i, s)
}
Bored Badger
a := []string{"Foo", "Bar"}
for i, s := range a {
fmt.Println(i, s)
}
for index, element := range someSlice {
// index is the index where we are
// element is the element from someSlice for where we are
}