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