4 lines
66 B
Text
4 lines
66 B
Text
|
|
(defvar str "bar")
|
||
|
|
(setq str (concat "foo" str))
|
||
|
|
str ;=> "foobar"
|