trying to eliminate redundant code in application, because it's getting hard to understand

This commit is contained in:
Danny Yoo 2011-04-25 12:45:55 -04:00
parent 759bedd9cf
commit 8b5bd061db
2 changed files with 393 additions and 466 deletions

File diff suppressed because it is too large Load Diff

View File

@ -519,6 +519,15 @@
(void))
(test '(begin (define (f x)
(* x x))
(f 3)
(f 4)
(f 5))
25)
(test '(begin (define (sum-integers a b)
(if (> a b)
0