with-input-from-string
macro
(with-input-from-string (sym text) &body forms)
Binds sym to a lisp reader on the string text and executes forms as a
do block.
make-html > (with-input-from-string ($stdin "aap noot mies") (read) (read-all))
it: (noot mies)