package point type Point struct { X, Y int } func New(x, y int) Point { return Point{x, y} }