Now creating the correct internal bignum representation

add_integers returns an integer which by inspection of the internal representation is correct, but the print representation is not correct.
This commit is contained in:
Simon Brooke 2019-01-03 11:21:08 +00:00
parent 4295b6e57f
commit d9d789fdd0
5 changed files with 54 additions and 27 deletions

View file

@ -4,3 +4,5 @@
(cond
((= x 1) n)
(t (* n (expt n (- x 1)))))))
(expt 2 65)