Sign in
go
/
tour
/
d844dc7a157c5d2e92bccc9732530c37bc7ef33b
/
.
/
content
/
moretypes
/
structs.go
blob: 253a4fd6d215608e6576d87910e815f09fb89bcb [
file
] [
log
] [
blame
]
// +build OMIT
package main
import "fmt"
type Vertex struct {
X int
Y int
}
func main() {
fmt.Println(Vertex{1, 2})
}