Logo

Programming-Idioms

History of Idiom 13 > diff from v40 to v41

Edit summary for version 41 by :
New Clojure implementation by user [pgon101a]

Version 40

2016-02-17, 17:10:56

Version 41

2016-02-17, 22:55:04

Idiom #13 Iterate over map keys and values

Print each key k with its value x from an associative array mymap

Idiom #13 Iterate over map keys and values

Print each key k with its value x from an associative array mymap

Code
(doseq [k {:a "x" :b "y" :c "z"}] (prn k))