go-tour/map-literals-continued.go
2020-02-04 21:44:36 -06:00

17 lines
218 B
Go

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)
}