My first Scheme program
I’ve just started experimenting with Scheme, specifically to follow Structure and Interpretation of Computer Programs. Here is a Scheme procedure that returns the sum of squares of two larger numbers out of the given three. 1 2 3 4 5 (define (sumLargeSquare a b c) (cond ((and (< a b) (< a c)) (+ (* [...]
Tagged programming, scheme, sicp


