go-tour/structs.go
2020-02-04 21:44:36 -06:00

13 lines
118 B
Go

package main
import "fmt"
type Vertex struct {
X int
Y int
}
func main() {
fmt.Println(Vertex{1, 2})
}