View Problem

Retrieve a value from a map

Given a map pets {joe:cat,mary:turtle,bill:canary} print the pet for "joe" ("cat")
DiskEdit
clojure
(def pets '{joe cat mary turtle bill canary})

(println (get pets 'joe))

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