]> git.rkrishnan.org Git - sicp.git/commitdiff
solution to 2.4
authorRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Mon, 7 Jun 2010 18:00:52 +0000 (23:30 +0530)
committerRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Mon, 7 Jun 2010 18:00:52 +0000 (23:30 +0530)
src/sicp/ex2_4.clj [new file with mode: 0644]

diff --git a/src/sicp/ex2_4.clj b/src/sicp/ex2_4.clj
new file mode 100644 (file)
index 0000000..82f8a2d
--- /dev/null
@@ -0,0 +1,19 @@
+(ns sicp.ex2_4
+  (:use [sicp utils]
+       [clojure.test]))
+
+(defn cons [x y]
+  (fn [f] (f x y)))
+
+(defn car [x]
+  (x (fn [p q] p)))
+
+(defn cdr [x]
+  (x (fn [p q] q)))
+
+;; cons takes x and y and returns a function which takes a param as input
+;; which is nother function and calls that function with x and y. Now
+;; car of a cons cell, calls this function returned by cons, with another
+;; function as input parameter. Remember that cons returns a func which takes
+;; another func as input. This function passed takes 2 inputs p and q and
+;; returns p in the case of car and q for cdr.