aboutsummaryrefslogtreecommitdiff
path: root/Lisp Quine.wiki
diff options
context:
space:
mode:
Diffstat (limited to 'Lisp Quine.wiki')
-rw-r--r--Lisp Quine.wiki7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lisp Quine.wiki b/Lisp Quine.wiki
new file mode 100644
index 0000000..011b8b3
--- /dev/null
+++ b/Lisp Quine.wiki
@@ -0,0 +1,7 @@
+Note that the code below isn't necesarily a quine, but becomes one
+when put through your lisp evaluator.
+
+{{{lisp
+((lambda (f) `(,f ',f)) '(lambda (f) `(,f ',f)))
+}}}
+