go-tour/struct-pointers.go

16 lines
155 B
Go
Raw Normal View History

2020-02-05 03:44:36 +00:00
package main
import "fmt"
type Vertex struct {
X int
Y int
}
func main() {
v := Vertex{1, 2}
p := &v
p.X = 1e9
fmt.Println(v)
}