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