Post Scarcity
A prototype for a post scarcity programming environment
Loading...
Searching...
No Matches
expt.lisp
Go to the documentation of this file.
1(set! expt (lambda
2 (n x)
3 "Return the value of `n` raised to the `x`th power."
4 (cond
5 ((= x 1) n)
6 (t (* n (expt n (- x 1)))))))
7
8(inspect (expt 2 60))