This message was deleted.
# golang
s
This message was deleted.
c
just to give some context i’m using a loop to create multiple VMs and inside that loop i have a loop that iterates over the zones
Copy code
var zone string
var zonecount [3]int
for z := range zonecount {
	zone := string(z)
	fmt.Println(zone)
}
Feels weird to me. Wondering if there is a better way