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