Back to slide -- Keyboard shortcut: 'u'  previous -- Keyboard shortcut: 'p'  next -- Keyboard shortcut: 'n'          y-2.scm - The starting point - again.Lecture 2 - slide 11 : 35
Program 2

; The starting point.



(let ((fac (lambda (f n)                               ; CURRY (lambda (f n) ...)
              (if (= n 0) 1 (* n (f f (- n 1)))))))
  (fac fac 5))