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