Evaluate BODY with *yaclml-stream* bound to a string stream, return the string.
(defmacro with-yaclml-output-to-string (&body body)
"Evaluate BODY with *yaclml-stream* bound to a string stream, return the string."
(with-unique-names (output)
`(with-output-to-string (,output)
(with-yaclml-stream ,output
,@body))))Source Context