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

4 lines
49 B
Plaintext

(setq str1 "hi")
(setq str2 str1)
(eq str1 str2)