Skip to content

Instantly share code, notes, and snippets.

@shirok
Created September 30, 2017 10:27
Show Gist options
  • Save shirok/b592d20b5ed8ab4b7d8c8c1154dc082f to your computer and use it in GitHub Desktop.
Save shirok/b592d20b5ed8ab4b7d8c8c1154dc082f to your computer and use it in GitHub Desktop.
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