/ Published in: Clojure
Function prints all key value pars of Clojure map in key : value format. Useful in debugging.
Expand |
Embed | Plain Text
(defn print-map [m] (for [[x,y] (seq m)] (println (str x " : " y))))
You need to login to post a comment.
