StructsStructs A struct is a collection of fields. structs.go package mainimport "fmt"type Vertex struct { X int Y int}func main() { fmt.Println(Vertex{1, 2})}