FACT Program: lambda

Code:

(lambda (n)
  (if (= n 0)
      1
      (* n (fact (- n 1)))))

Returns values:

  1. 1
  2. (* n (fact ...))
Calls:

  1. itself
  2. the primitive procedure =
  3. the primitive procedure *
  4. the primitive procedure -