Subject: Re: List --> String???? From: Erik Naggum <erik@naggum.no> Date: 1996/07/11 Newsgroups: comp.lang.lisp Message-ID: <3046039311791409@arcana.naggum.no> [Bruce Voss] | I am trying to convert a complex list (list of lists) into a string. | The list looks something like this: | | ((2 3) (3 4) (4 5)) | | I want it to look like this: | | "((2 3) (3 4) (4 5))" | | Does anyone know how this can be done with relative ease? see the section of the Lisp printer in your Lisp reference. #\Erik