Function: STRCAT

Documentation

Returns a fresh string consisting of ITEMS concat'd together.

Source

(defun strcat (&rest items)
  "Returns a fresh string consisting of ITEMS concat'd together."
  (strcat* items))
Source Context