Allez ajouter un tableau d'ajout dans le tableau

a := []int{1, 2}
b := []int{11, 22}
a = append(a, b...) // a == [1 2 11 22]
Mackerel