jan tolenaar / kiezellisp / index-of-everything

Name

$print-compact

Usage

special-variable

Description

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")