jan tolenaar / kiezellisp / index-of-everything

Name

say

Usage

builtin-function

Syntax

(say &rest items)
(say text-writer &rest items)

Description

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

See also

print print-line write write-line