Content deleted Content added
ITS |
m typographical corrections for tail recursion |
||
Line 151:
;; => (1 4 9 16)
We can define both of these tail-recursively as follows. The ''named'' <code>let</code> statement and the <code>do</code> statement are syntactic sugar which
(define (factorial n)
Line 171:
;; => (1 4 9 16)
Please note that in both cases
=== Input/output ===
|