Skip to content

Instantly share code, notes, and snippets.

@fortune
Created April 17, 2012 08:12
Show Gist options
  • Save fortune/2404418 to your computer and use it in GitHub Desktop.
Save fortune/2404418 to your computer and use it in GitHub Desktop.
Scheme で書いた Quine コード。このコードを実行すると、全く同じ内容のリストが返される。
((lambda (x)
(list x (list (quote quote) x)))
(quote (lambda (x) (list x (list (quote quote) x)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment