Make a newline if the Writer is not already at the beginning of the line.
N.B. Only works on ColumnWriters right now.
(defn fresh-line
"Make a newline if the Writer is not already at the beginning of the line.
N.B. Only works on ColumnWriters right now."
[]
(if (not (= 0 (get-column (:base @@*out*))))
(prn)))
Comments top
No comments for fresh-line. Log in to add a comment.