RosettaCodeData/Task/Interactive-programming-repl-/Emacs-Lisp/interactive-programming-repl--1.l
2023-07-01 13:44:08 -04:00

5 lines
116 B
Common Lisp

(defun my-join (str1 str2 sep)
(concat str1 sep sep str2))
my-join
(my-join "Rosetta" "Code" ":")
"Rosetta::Code"