(defmacro with-in-reader "Opens a PushbackReader on f, binds it to *in*, and evaluates body." [f & body] `(with-open [stream# (PushbackReader. (reader ~f))] (binding [*in* stream#] ~@body)))
Comments top
No comments for with-in-reader. Log in to add a comment.