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

3 lines
47 B
Common Lisp

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