box-o-sand/gotime/gotour-artifacts/maps/main.go

19 lines
241 B
Go
Raw Normal View History

// From go-tour #28
package main
import "fmt"
type Vertex struct {
2012-11-06 02:00:35 +00:00
Lat, Long float64
}
var m map[string]Vertex
func main() {
2012-11-06 02:00:35 +00:00
m = make(map[string]Vertex)
m["Bell Labs"] = Vertex{
40.68433, 74.39967,
}
fmt.Println(m["Bell Labs"])
}