From 6e9b570e1d54c1c3d89ba42b4c60d618c5d5a36b Mon Sep 17 00:00:00 2001
From: Ramakrishnan Muthukrishnan <vu3rdd@gmail.com>
Date: Sat, 4 Sep 2010 09:08:11 +0530
Subject: [PATCH] Added a simple explanation.

---
 src/sicp/ex2_55.clj | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/sicp/ex2_55.clj b/src/sicp/ex2_55.clj
index f3e7041..6bc1d86 100644
--- a/src/sicp/ex2_55.clj
+++ b/src/sicp/ex2_55.clj
@@ -3,4 +3,10 @@
 
 (deftest test-double-quote
   (is [= (first ''abracadabra)
-         'quote]))
\ No newline at end of file
+         'quote]))
+
+(comment
+  "(first ''abcde) expands to (first (quote (quote (abcde)))
+  which is (quote (abcde)), first of which is quote. The outer
+  quote makes the inner quote a symbol and does not evaluate it." 
+  )
\ No newline at end of file
-- 
2.45.2