Samples
Samples
map-literals-continued
Language: Gold, Platform: Echoes, Category: Tour of Go
https://github.com/remobjects/ElementsSamples/tree/master/Gold/Echoes/Tour of Go/map-literals-continued
-
map-literals-continued.Echoes
-
References
- #
- Source Files
-
Other Files
-
References
map-literals-continued.go
// Ignored build directive: +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)
}
