func printAll(values []int) { for i, x := range values { fmt.Printf("Item %d = %d\n", i, x) } }