go-tour/structs.go

13 lines
118 B
Go
Raw Normal View History

2020-02-05 03:44:36 +00:00
package main
import "fmt"
type Vertex struct {
X int
Y int
}
func main() {
fmt.Println(Vertex{1, 2})
}