go-tour/maps.go

18 lines
243 B
Go
Raw Normal View History

2020-02-05 03:44:36 +00:00
package main
import "fmt"
type Vertex struct {
Lat, Long float64
}
var m map[string]Vertex
func main() {
m = make(map[string]Vertex)
m["Bell Labs"] = Vertex{
40.68433, -74.39967,
}
fmt.Println(m["Bell Labs"])
}