Play audio slide show -- Keyboard shortcut: 'x'  Back to notes -- Keyboard shortcut: 'u'              Slide program -- Keyboard shortcut: 't'      The function accumulate-right.Lecture 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)))))