RosettaCodeData/Task/Interactive-programming-repl-/Emacs-Lisp/interactive-programming-repl--1.el

6 lines
116 B
EmacsLisp
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
(defun my-join (str1 str2 sep)
(concat str1 sep sep str2))
my-join
(my-join "Rosetta" "Code" ":")
"Rosetta::Code"