some solutions for MIT Press's "structure and interpretation of computer programs", I guess
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
117 B

(define (square x) (* x x))
(define (take-three x y z)
(+ (square x) (square y)))
(display (take-three 3 3 3))