Go言語 Slice
The Go Blog 『Arrays, slices (and strings): The mechanics of 'append'』から
Arrays have their place—they are a good representation of a transformation matrix for instance—but their most common purpose in Go is to hold storage for a slice.
Go言語における配列の最も共通する目的はスライスのストレージを保持するため
A slice is a data structure describing a contiguous section of an array stored separately from the slice variable itself. A slice is not an array. A slice describes a piece of an array.
スライスはスライス自体の変数とは別に保存されている配列の連続するするデータ構造の事です。スライスは配列ではありません、スライスは配列の一部を表現しています。