Sign in
go
/
tour
/
b9da173772bb642757acc6a9efd610daad8b3227
/
.
/
content
/
moretypes
/
struct-fields.go
blob: b85607f59094dbc78ec3abcf7731e574d246d341 [
file
] [
log
] [
blame
]
// +build OMIT
package main
import "fmt"
type Vertex struct {
X int
Y int
}
func main() {
v := Vertex{1, 2}
v.X = 4
fmt.Println(v.X)
}