1 2 3 4 5 6 7 8 9 10
package pointer type Delta struct { x int y int } func NewDelta(x, y int) *Delta { return &Delta{x: x, y: y} }