Como verificar se existe um valor no mapa Golang

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