sajad torkamani

A struct is a collection of fields:

package main

import "fmt"

type Vertex struct {
	X int
	Y int
}

func main() {
	fmt.Println(Vertex{1, 2})
}

Think of struct as short for structure.

Tagged: Golang