Sign in
go
/
website
/
fb64aa77f925610ac46c813d080d1f01f3827ece
/
.
/
tour
/
content
/
moretypes
/
struct-pointers.go
blob: 901f00391cc5faec90547dc1c338e3ef90aedf3a [
file
] [
log
] [
blame
]
// +build OMIT
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)
}