RosettaCodeData/Task/String-append/Emacs-Lisp/string-append-2.l

3 lines
54 B
Common Lisp

(defun glue (str1 str2)
(format "%s%s" str1 str2) )