Stop show with sound  Next slide in show -- Keyboard shortcut: 'n'  1 minute, 24 secondsLecture 4 - slide 17 : 34
Program 1
(define (accumulate-right f init lst)
  (if (null? lst)
      init
      (f (car lst) (accumulate-right f init (cdr lst)))))