| With afn, I can make a recursive unnamed function by calling (self) in the body of the function. This lets me do: (with (my-func (afn (a1 a2) (... (self ...) ) )
something else...)
...code using my-func...)
I'm sure there is a simple answer, but what if I want the equivalent of: (with (my-func1 (fn (x y) (my-func2 ... ))
my-func2 (fn (a b) (my-func1 ... )))
... code... )
|