Sign in
go
/
tour
/
16d3ff4aeb4f07df3cbc2d072b04443a462b2f69
/
.
/
content
/
moretypes
/
structs.go
blob: 253a4fd6d215608e6576d87910e815f09fb89bcb [
file
]
// +build OMIT
package main
import "fmt"
type Vertex struct {
X int
Y int
}
func main() {
fmt.Println(Vertex{1, 2})
}