Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
7
Task/Copy-a-string/Emacs-Lisp/copy-a-string.l
Normal file
7
Task/Copy-a-string/Emacs-Lisp/copy-a-string.l
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
(let* ((str1 "hi")
|
||||
(str1-ref str1)
|
||||
(str2 (copy-sequence str1)))
|
||||
(eq str1 str1-ref) ;=> t
|
||||
(eq str1 str2) ;=> nil
|
||||
(equal str1 str1-ref) ;=> t
|
||||
(equal str1 str2)) ;=> t
|
||||
Loading…
Add table
Add a link
Reference in a new issue