RosettaCodeData/Task/String-prepend/Emacs-Lisp/string-prepend-2.l

6 lines
84 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(require 'cl-lib)
(defvar str "bar")
(cl-callf2 concat "foo" str)
str ;=> "foobar"