Back to notes -- Keyboard shortcut: 'u'  previous -- Keyboard shortcut: 'p'  next -- Keyboard shortcut: 'n'  Slide program -- Keyboard shortcut: 't'    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))