RosettaCodeData/Task/Copy-a-string/Emacs-Lisp/copy-a-string.l

4 lines
49 B
Text
Raw Permalink Normal View History

2018-08-17 15:15:24 +01:00
(setq str1 "hi")
(setq str2 str1)
(eq str1 str2)