Re: append

2015-10-18 Thread Alexander Burger
HI all, > append operates on LISTS. 'd or 'e is not a list. > > You should do: > > (append '(a b c) '(d) '(e)) > > Or, alternatively: > > (append '(a b c) (list 'd 'e)) That's right. It is best if you try to understand what happens internally http://software-lab.de/doc/ref.html#vm

RE: append

2015-10-18 Thread Jonathan Kelly
> -Original Message- > From: picolisp@software-lab.de [mailto:picolisp@software-lab.de] On Behalf > Of Alexander Burger > Sent: Sunday, 18 October 2015 6:03 PM > To: picolisp@software-lab.de > Subject: Re: append > > HI all, > > > append operates