Skip to content

Instantly share code, notes, and snippets.

@rcoproc
Created March 1, 2020 20:00
Show Gist options
  • Save rcoproc/98be36a8877acceed3952e9fe483b8c3 to your computer and use it in GitHub Desktop.
Save rcoproc/98be36a8877acceed3952e9fe483b8c3 to your computer and use it in GitHub Desktop.
Array definition with for navigation sample
package main
import "fmt"
func main() {
a := [...]int{1, 2, 3, 4, 5}
for index := 0; index < len(a); index++ {
fmt.Printf("a[%d] = %d\n", index, a[index])
}
for index, value := range a {
fmt.Printf("a[%d] = %d\n", index, value)
}
for _, value := range a {
fmt.Printf("Array = %d\n", value)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment