I\'ve written a Lisp function like this:
(defun power (base exponent) (if (= exponent 0) 1 (* base (power (- exponent 1)))))
Wh
It is the recursive call that only has one argument:
(power (- exponent 1))
It should be like this:
(power base (- exponent 1))