xxxxxxxxxx
// Program to add elements to a slice
package main
import "fmt"
func main() {
primeNumbers := []int{2, 3}
// add elements 5, 7 to the slice
primeNumbers = append(primeNumbers, 5, 7)
fmt.Println("Prime Numbers:", primeNumbers)
}
xxxxxxxxxx
// appendSliceToSlice method appends slice y to x
func appendSliceToSlice() {
x := []int{1,2,3}
y := []int{4,5,6}
x = append(x, y )
fmt.Println(x) // output: [1 2 3 4 5 6]
}