Hello,
Is there a recursive version of let? For example, I know two variables can be declared this way:
Thanks.
Is there a recursive version of let? For example, I know two variables can be declared this way:
(let ((a 1)
(b 2))
(+ a b))
...but I would like to do something like this:(let ((a 1)
(b (+ a 1)))
(+ a b))
So, is there something similar to let that works recursively, i.e. labels vs. flet?Thanks.