Comment vérifier si une valeur existe dans la carte Golang

if val, ok := dict["foo"]; ok {
    //do something here
}
Pleasant Panther