Sign in
go
/
tour
/
8bf7e083063e016e10c1d369645882a676870786
/
.
/
content
/
moretypes
/
map-literals-continued.go
blob: 3a788448c141dc09fd21b3c3a9804f84759e04b6 [
file
] [
log
] [
blame
]
// +build OMIT
package main
import "fmt"
type Vertex struct {
Lat, Long float64
}
var m = map[string]Vertex{
"Bell Labs": {40.68433, -74.39967},
"Google": {37.42202, -122.08408},
}
func main() {
fmt.Println(m)
}