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