5 lines
98 B
Text
5 lines
98 B
Text
|
|
(defvar foo "foo")
|
||
|
|
(defvar foobar (concat foo "bar"))
|
||
|
|
(message "%sbar" foo)
|
||
|
|
(message "%s" foobar)
|