Path: utzoo!news-server.csri.toronto.edu!rutgers!tut.cis.ohio-state.edu!ucbvax!bloom-beacon!dont-send-mail-to-path-lines From: markf@altdorf.ai.mit.EDU Newsgroups: comp.lang.scheme.c Subject: Re: list-to-string conversion Message-ID: <9103111601.AA05690@bloom-beacon.MIT.EDU> Date: 11 Mar 91 15:26:29 GMT References: <2372@tuvie.UUCP> Sender: daemon@athena.mit.edu (Mr Background) Reply-To: markf@zurich.ai.mit.edu Organization: The Internet Lines: 16 >> >> Does anybbody know how to construct a function >> "list->string" for MIT Scheme vers 7.0 ? >> It should work as follows: >> >> (list->string '((a 1) (b 2))) >> => "((a 1) (b 2))" >> >> I can find many conversion functions like >> number->string, symbol->string etc. but >> can't use that for my trivial seeming function. (write-to-string '((a 1) (b 2))) ;Value "((a 1) (b 2))" -Mark