Code Review

Compare your solutions

    #| BEGIN (Write your solution here) |#
(define (partial-sums s)
  (cons-stream (stream-car s)
               (add-streams (stream-cdr s)
                            (partial-sums s))))
#| END |#