RosettaCodeData/Task/String-append/Emacs-Lisp/string-append-1.l
2015-11-18 06:14:39 +00:00

2 lines
47 B
Common Lisp

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