(defmacro lets [bindings & body] `((fn [~@(take-nth 2 bindings)] ~@body) ~@(take-nth 2 (rest bindings)))) (lets [foo "bar" baz 123] (println ...
確定! 回上一頁