(defun f (n) (if (= n 0) 1 (g (f (- n 1)) ) ) ) (defun g (m) (+ m m))
Contents    Page-10    Prev    Next    Page+10    Index