/ Published in: Clojure
Function prints all key value pars of Clojure map in key : value format.
Useful in debugging.
Useful in debugging.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
(defn print-map [m] (for [[x,y] (seq m)] (println (str x " : " y))))