Back to slide -- Keyboard shortcut: 'u'        next -- Keyboard shortcut: 'n'          reduction.scm - The function reduce-right.Lecture 2 - slide 28 : 35
Program 1

(define (reduce-right f lst)
  (if (null? (cdr lst))
      (car lst)
      (f (car lst) 
         (reduce-right f (cdr lst)))))