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