構造体 構造体struct はフィールドのコレクションです。 package mainimport "fmt"type Vertex struct { X int Y int}func main() { fmt.Println(Vertex{1, 2})}