$print-compact
special-variable
Used by write.
make-html > (do
(let $print-compact false)
(write-line '(.to-upper "abc")))
((. "to-upper") "abc")
make-html > (do
(let $print-compact true)
(write-line '(.to-upper "abc")))
(.to-upper "abc")