Sign in
go
/
website
/
850ae8c1f70576aa9dc40540dbb36e90dcfbc9ae
/
.
/
_content
/
tour
/
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})
}