Data update
This commit is contained in:
parent
4bb20c9b71
commit
cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions
7
Task/Copy-a-string/Emacs-Lisp/copy-a-string.el
Normal file
7
Task/Copy-a-string/Emacs-Lisp/copy-a-string.el
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