say
builtin-function
(say &rest items)
(say text-writer &rest items)
Writes each item unescaped to standard output or the given TextWriter.
Each item is followed by a space. When printing a list or vector, the
elements are separated by spaces.
make-html > (say "Hello" "World")
Hello World
make-html > (say $stdout '(1 2 3))
1 2 3