5 lines
84 B
EmacsLisp
5 lines
84 B
EmacsLisp
(require 'cl-lib)
|
|
|
|
(defvar str "bar")
|
|
(cl-callf2 concat "foo" str)
|
|
str ;=> "foobar"
|