(defmacro with-out-append-writer "Like with-out-writer but appends to file." [f & body] `(with-open [stream# (append-writer ~f)] (binding [*out* stream#] ~@body)))
Comments top
No comments for with-out-append-writer. Log in to add a comment.