with-output-to-string
macro
(with-output-to-string (sym) &body forms)
Binds sym to a string writer and executes forms as a do block.
Returns the contents of the string writer.
make-html > (with-output-to-string ($stdout) (print "hello"))
it: "hello"