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

6 lines
84 B
EmacsLisp
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
(require 'cl-lib)
(defvar str "bar")
(cl-callf2 concat "foo" str)
str ;=> "foobar"