Sign in
go
/
tour
/
c7374255f627de1d833c24ab73b75f6e7c25ef75
/
.
/
prog
/
structs.go
blob: b447f7ec9853e3ddae3b35d0f26b5d765461c001 [
file
] [
log
] [
blame
]
package main
import "fmt"
type Vertex struct {
X int
Y int
}
func main() {
fmt.Println(Vertex{1, 2})
}