3 lines
54 B
Text
3 lines
54 B
Text
|
|
(defun glue (str1 str2)
|
||
|
|
(format "%s%s" str1 str2) )
|