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