From ... From: Erik Naggum Subject: Re: Free ? Date: 1997/04/16 Message-ID: <3070138406039580@naggum.no>#1/1 X-Deja-AN: 235061903 References: <5ip32j$luu@srv13s4.cas.org> <5iq20k$nis@srv13s4.cas.org> <3070075118027408@naggum.no> <3070098929710351@naggum.no> mail-copies-to: never Organization: Naggum Software; +47 2295 0313; http://www.naggum.no Newsgroups: comp.lang.lisp * Hrvoje Niksic | It was my misexpression. Again, the question stands -- *why* is that so? | Is it that complex to write a good CL implementation, so that people have | to work full-time on it, or...? it is not particularly hard to implement Common Lisp from Guy Steele's Common Lisp the Language from 1984. it is _much_ harder to implement from Common Lisp the Standard (ANSI X3.226). to implement a full Common Lisp system, however, requires a lot more than just the language. this is really no different from other languages, except that it is useful to implement this from inside the Lisp, and that effectively means doing more initial work before payoff time. | Why are the current Lisp implementations an exception? my experience with programmers of free software and their undiminished need for rewards for their work (only in different ways) indicates that the incremental rewards for enhancing a language environment that leaves (or is believed to leave) little room for personal invention preclude serious investment in a Common Lisp system. another "problem" is that just about anybody can "contribute" something to those relatively simple stand-alone Unix tools, and they grow to become quite sophisticated, but each incremental improvement is (immediately) gratifying to the programmer. before you can start improving on Common Lisp, you need a few years of experience with it, and a real implementation to boot. more often than not, any improvements you might have in mind are already in the language, and your adding non-standard ways to do it is only going to hurt your users. look how Emacs grows as an example: rarely are new language features or fundamental functions contributed, but often packages, small incremental improvements, etc. (e.g., a few people ask why I don't write new packages for Emacs. however, they wouldn't notice that I implemented `encode-time', `decode-time', and `format-time-string' to get rid of the annoying hacking of `current-time-string'. nor would they see the enhancement to the Lisp reader and printer that allows Emacs Lisp macros to use `make-symbol' or `gensym' correctly. to do so, I made the first step towards packages in Emacs Lisp, and the other day I taught `intern' to recognize keywords. almost all of this is already in (and taken from) Common Lisp.) #\Erik -- I'm no longer young enough to know everything.