Emanuel Berg <in...@dataswamp.org> writes: > If you quote a lambda it is just a list with data: > > '(a b c) > > '(lambda not an anonymous function) > > Eval and you will see, there's no difference in > principle. Lists.
Yes - and you want to make your lambda forms subject to evaluation, for several different reasons. They are not data. You want to use the return value, not the expression. Michael.