Subject: Re: Why is Lisp not as popular as Python?
From: rpw3@rpw3.org (Rob Warnock)
Date: Fri, 29 Apr 2005 04:25:42 -0500
Newsgroups: comp.lang.lisp
Message-ID: <7uidnaSlgP0LYOzfRVn-iA@speakeasy.net>
Frank Buss  <fb@frank-buss.de> wrote:
+---------------
| Andr� Thieme <address.good.until.2005.may.16@justmail.de> wrote:
| > I don't see much use to implement Python constructs in Lisp.
| > If I want them I can use Python. 
| 
| why writing more code than necessary? If you need to read files all the 
| time, then something like the open/read combination in Python would be 
| useful:
| 
| (defun read-file (name) ... )
+---------------

Heh. I actually have *three* of those in my personal "utils.lisp":  ;-}

   file-string  ; Suck up a whole file into a string.
   file-lines   ;                   ...into a list of strings (lines).
   file-forms   ;                   ...into a list of forms (s-exprs).


-Rob

-----
Rob Warnock			<rpw3@rpw3.org>
627 26th Avenue			<URL:http://rpw3.org/>
San Mateo, CA 94403		(650)572-2607