View Problem

Retrieve a value from a map

Given a map pets {joe:cat,mary:turtle,bill:canary} print the pet for "joe" ("cat")
ExpandDiskEdit
go
fmt.Println(pets["joe"])

Submit a new solution for go
There are 27 other solutions in additional languages (clojure, cpp, erlang, fantom ...)