]> git.rkrishnan.org Git - sicp.git/commit
Solution to 4.33. This had been difficult to get right, though conceptually it was
authorRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Sun, 3 Jun 2012 21:53:22 +0000 (03:23 +0530)
committerRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Sun, 3 Jun 2012 21:56:17 +0000 (03:26 +0530)
commit8e18b28ac38e3b69b68a416545924d3de69ba512
tree21957cf5b94849365a68cb82ed27b8c00a23eb1e
parent554d8c6596c08583783b44d5c86fad0d1e76420b
Solution to 4.33. This had been difficult to get right, though conceptually it was
simple. One just needed to transform (quote (a b c)) into (cons 'a (cons 'b (cons 'c '())))
and eval it.
src/sicp/eval-4.33.rkt [new file with mode: 0644]
src/sicp/ex4_33.rkt [new file with mode: 0644]