Is there any mistake here?

Started by Kazimir Majorinc, August 01, 2010, 09:27:11 AM

Previous topic - Next topic

Kazimir Majorinc

X=NIL; (dotform X)=NIL; (listform X)=();

X=(); (dotform X)=NIL; (listform X)=();

X=(()); (dotform X)=(NIL . NIL); (listform X)=(());

X=(NIL); (dotform X)=(NIL . NIL); (listform X)=(());

X=((NIL)); (dotform X)=((NIL . NIL) . NIL); (listform X)=((()));

X=(NIL . (NIL . NIL)); (dotform X)=(NIL . (NIL . NIL)); (listform X)=(() ());

X=((NIL . NIL) . NIL); (dotform X)=((NIL . NIL) . NIL); (listform X)=((()));

X=((A . NIL) . (B . NIL)); (dotform X)=((A . NIL) . (B . NIL)); (listform X)=((A) B);

X=(A); (dotform X)=(A . NIL); (listform X)=(A);

X=(A . B); (dotform X)=(A . B); (listform X)=(A . B);

X=(() . ()); (dotform X)=(NIL . NIL); (listform X)=(());

X=(B . (C)); (dotform X)=(B . (C . NIL)); (listform X)=(B C);

X=(A B C); (dotform X)=(A . (B . (C . NIL))); (listform X)=(A B C);




(it is about other Lisps, it has no sense in Newlisp I think.)
http://kazimirmajorinc.com/\">WWW site; http://kazimirmajorinc.blogspot.com\">blog.