APPEND-STRING
=============
syntax: (append-string {<string> ...})
This function produces a string with the characters of
all strings together. It only works in Babylon-Lisp.
It can be compared with the Common-Lisp-command
CONCATENATE.
example: >(append-string "a" "b" "c")
"abc"