13 lines
118 B
Go
13 lines
118 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
type Vertex struct {
|
|
X int
|
|
Y int
|
|
}
|
|
|
|
func main() {
|
|
fmt.Println(Vertex{1, 2})
|
|
}
|