Community Scheme Wiki: Recent Changes


2013-06-19
sicp-ex-1.323:59:45(12 hours ago)Removed unneeded parenthesis around consequent variable x in if combination.
sicp-ex-1.323:25:34(12 hours ago);; no min used (define (square x) (* x x)) (define (sum-of-squares x y) (+ (square x) (square y))) (define (biggest x y) (if (> x y) (x) y)) (define (input x y z) (sum-of-squares (biggest x y) (biggest y z)))
sicp-ex-2.1121:52:37(14 hours ago)comment by jsdalton
sicp-ex-2.602:01:10(1 day ago)comment by jsdalton
2013-06-18
sicp-ex-2.521:39:17(1 day ago)comment by jsdalton
2013-06-16
sicp-ex-1.723:04:55(3 days ago)Explain more of the rationale for the alternative
2013-06-11
scheme-vs-haskell09:35:37(9 days ago)Fixed a few typos