blob: b447f7ec9853e3ddae3b35d0f26b5d765461c001 [file] [log] [blame]
package main
import "fmt"
type Vertex struct {
X int
Y int
}
func main() {
fmt.Println(Vertex{1, 2})
}