Blob


1 (define (linear-combination a b x y)
2 (+ (* a x) (* b y)))
4 (define (linear-combination a b x y)
5 (add (mul a x) (mul b y)))