Created
September 30, 2017 10:27
-
-
Save shirok/b592d20b5ed8ab4b7d8c8c1154dc082f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gosh> (define a '#0=(#1=(#0#))) | |
a | |
gosh> (define b (car a)) | |
b | |
gosh> (eq? b (car a)) | |
#t | |
gosh> (eq? a (car b)) | |
#t | |
gosh> (equal? a b) | |
#t |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment