#!/usr/local/bin/go run package main import "fmt" func main() { s := []int{1,2,3,4,5} fmt.Println("%v", s) append(s, 6,7) fmt.Println("%v", s) }