In case you want to append a slice
arr := new([][]string) *arr = append(*arr, []string{"abc", "def"}) fmt.Println(*arr)
See playground