Subject: Re: [Q]: Need help with cons From: Erik Naggum <erik@naggum.no> Date: 2000/01/21 Newsgroups: comp.lang.lisp Message-ID: <3157402011629405@naggum.no> * Dirt <pipe@rochester.rr<.>com> | Is there a way to create the following list using 'cons' | | ( ( (a (b (x) d) ) ) ) sure. (cons '((a (b (x) d))) nil) you take your homework from there. #:Erik