#134
A nil key
 

Difficulty:Elementary
Topics:maps


Write a function which, given a key and map, returns true iff the map contains an entry with that key and its value is nil.
test not run
(true?  (__ :a {:a nil :b 2}))
test not run
(false? (__ :b {:a nil :b 2}))
test not run
(false? (__ :c {:a nil :b 2}))


Code which fills in the blank: