Allez accéder aux valeurs d'une carte à Golang

package main
import ("fmt")

func main() {

  // create a map
  flowerColor := map[string]string{"Sunflower": "Yellow", "Jasmine": "White", "Hibiscus": "Red"}

  // access value for key Sunflower
  fmt.Println(flowerColor["Sunflower"])  // Yellow

  // access value for key HIbiscus
  fmt.Println(flowerColor["Hibiscus"])  // Red

}
SAMER SAEID