RosettaCodeData/Task/Interactive-programming/Emacs-Lisp/interactive-programming-2.l
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

7 lines
193 B
Common Lisp

*** Welcome to IELM *** Type (describe-mode) for help.
ELISP> (defun my-join (str1 str2 sep)
(concat str1 sep sep str2))
my-join
ELISP> (my-join "Rosetta" "Code" ":")
"Rosetta::Code"
ELISP>