View Single Post
  #6 (permalink)  
Old 01-28-2012, 06:46 AM
Jussi Piitulainen
Guest
 
Posts: n/a
Default 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.)
Reply With Quote