(defmacro for-these [names expr & table] `(do ~@(map (fn [args] `(let [~@(interleave names args)] ~expr )) (partition (count names) table))))
Comments top
No comments for for-these. Log in to add a comment.