package main import ( "fmt" ) func main() { s := []int{1, 2, 3, 4, 5} s2 := []int{6, 7, 8, 9, 10} s = append(s, s2...) fmt.Println(s) }