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