import ( "fmt")type point struct { x, y int}func newPoint(x, y int) point { return point{x, y}}var p = newPoint(1, 2)fmt.Println(p.x)