5 lines
116 B
EmacsLisp
5 lines
116 B
EmacsLisp
(defun my-join (str1 str2 sep)
|
|
(concat str1 sep sep str2))
|
|
my-join
|
|
(my-join "Rosetta" "Code" ":")
|
|
"Rosetta::Code"
|