box-o-sand/oldstuff/gotime/gotour-artifacts/maps/main.go
2015-06-22 13:15:42 -05:00

19 lines
241 B
Go

// From go-tour #28
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"])
}