package main import "fmt" func main() { s := make([]string, 0) s1 := append(s, "帽子", "围巾", "衣服", "裤子", "袜子") fmt.Println(s1) }