go add to array code example
Example 1: go add to slice
var s []int
s = append(s, 0)
Example 2: go append array to array
a := []int{1, 2}
b := []int{11, 22}
a = append(a, b...) // a == [1 2 11 22]
var s []int
s = append(s, 0)
a := []int{1, 2}
b := []int{11, 22}
a = append(a, b...) // a == [1 2 11 22]