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