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