1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 20:10:49 +02:00
This commit is contained in:
Pratik Karki
2017-08-25 16:54:55 +05:45
parent aad51c5428
commit bce21489d8

View File

@@ -255,7 +255,7 @@ sqr ;; => #<procedure (sqr x)>
(equal? '(1 2 3) '(1 2 3)) ;; => #t
(equal? #(a b c) #(a b c)) ;; => #t
(equal? 'a 'a) ;; => #t
(equal? "abc" "abc") ;; => #f
(equal? "abc" "abc") ;; => #t
;; In Summary:
;; eq? tests if objects are identical