add_integers returns an integer which by inspection of the internal representation is correct, but the print representation is not correct.
9 lines
203 B
Common Lisp
9 lines
203 B
Common Lisp
(set! expt (lambda
|
|
(n x)
|
|
"Return the value of `n` raised to the `x`th power."
|
|
(cond
|
|
((= x 1) n)
|
|
(t (* n (expt n (- x 1)))))))
|
|
|
|
(expt 2 65)
|