Skip to content

Instantly share code, notes, and snippets.

@ijp
Created September 11, 2013 12:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ijp/6523190 to your computer and use it in GitHub Desktop.
Save ijp/6523190 to your computer and use it in GitHub Desktop.
a fibonacci "quine"
((lambda (i j self)
(list self j (+ i j) (list (quote quote) self)))
0
1
'(lambda (i j self)
(list self j (+ i j) (list (quote quote) self))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment