]> git.rkrishnan.org Git - sicp.git/commitdiff
add a factorial test
authorRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Wed, 18 Jan 2012 02:11:21 +0000 (07:41 +0530)
committerRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Wed, 18 Jan 2012 02:11:21 +0000 (07:41 +0530)
TODO
src/sicp/metacircular2-test.rkt

diff --git a/TODO b/TODO
index 829d844ba39dd987a6c5c9caebcccdb77b57342c..ee0aebdd9e04f8c39cd6a00343338aad68406aac 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,7 +1,7 @@
 * Things to do in chapter 2.
   - Work on 2.91 - 2.97 after working on 3.3.3
   - run all the program which uses `get' and `put', after implementing
-    it in chapter 3.
+   it in chapter 3.
    
 
 
index 91ea502fd664082146a675ac884d82f63c9e66ff..1644f95a9ac1aee0b8a548f614eeb0894f5d0c72 100644 (file)
                     b
                     (fib-iter (+ a b) a (- count 1)))))
            env1)
-     (check-equal? (eval '(fib 10) env1) 55 "named let"))))
+     (check-equal? (eval '(fib 10) env1) 55 "named let")
+     (eval '(define (factorial n)
+              (if (= n 1)
+                  1
+                  (* (factorial (- n 1)) n)))
+           env1)
+     (check-equal? (eval '(factorial 10) env1) 3628800 "factorial test"))))
 
 
 (run-tests metacircular2-tests)
\ No newline at end of file