Re: newbie question, 2
Fyndhorn Elder writes:
> One of the pitfalls of scheme and lisp programming:
> (set! otherlist (append (cons item otherlist))
> is not
> (set! otherlist (append (list item) otherlist))
What observable difference do you see? (I assume
the missing parenthesis is not the point, and
redundant calls are hardly pitfalls.)
|