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

3 lines
47 B
Common Lisp

(defun glue (str1 str2)
(concat str1 str2) )