Deutsch English Français Italiano |
<87edb5yxn5.fsf@nightsong.com> View for Bookmarking (what is this?) Look up another Usenet article |
Path: ...!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Paul Rubin <no.email@nospam.invalid> Newsgroups: comp.lang.lisp Subject: Re: Lisp history: IF, etc. Date: Tue, 16 Apr 2024 11:23:42 -0700 Organization: A noiseless patient Spider Lines: 26 Message-ID: <87edb5yxn5.fsf@nightsong.com> References: <uu54la$3su5b$6@dont-email.me> <uudrfg$2cskm$1@dont-email.me> <87r0fp8lab.fsf@tudado.org> <uuehdj$2hshe$1@dont-email.me> <87wmpg7gpg.fsf@tudado.org> <LISP-20240402085115@ram.dialup.fu-berlin.de> <20240402084057.881@kylheku.com> <86h6gjpq3i.fsf_-_@williamsburg.bawden.org> <m3frw2vlok.fsf@leonis4.robolove.meer.net> <86cyr6pb2l.fsf@williamsburg.bawden.org> <875xwy412p.fsf@nightsong.com> <868r1up0wk.fsf@williamsburg.bawden.org> <871q7m3wrj.fsf@nightsong.com> <86zfu9ooux.fsf@williamsburg.bawden.org> <87frw03b4j.fsf@nightsong.com> <877chbfs00.fsf@yaxenu.org> <87r0f61jkb.fsf@nightsong.com> <uvkf5e$iaa5$1@dont-email.me> <87il0iynlu.fsf@nightsong.com> <uvl0hh$p5em$1@dont-email.me> <uvl8v6$qqd0$1@dont-email.me> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Date: Tue, 16 Apr 2024 20:23:43 +0200 (CEST) Injection-Info: dont-email.me; posting-host="1053f3e06bcfa97abdc266c84650cb08"; logging-data="1149893"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18C7bm6XbK7/wPMmbRSkUU8" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) Cancel-Lock: sha1:ZOvCcSYZOui611Fhya9vIRD9Wo8= sha1:ke2aBHbCRERMsn2ZZ5dZbZLfgOg= Bytes: 3000 Lawrence D'Oliveiro <ldo@nz.invalid> writes: > [Lisp 2] That project was considered a “failure”, but I wonder why? > Did it turn out that getting rid of the (ahem) quirky Lisp syntax in > fact got rid of some of its expressive power, too? This retrospective (8 page PDF) gives the impression that Lisp 2 bogged down due to the implementation outstripping the limited computers available at the time. Plus, Lisp 1.5 had gotten entrenched enough that Lisp 2's Algol-like syntax didn't excite people any more: https://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=8267589 Lisp 2 had an interesting GC scheme that migrated into SPITBOL which is where I learned about it. It was a mark-sweep GC but had a "generational" aspect that relocated data that had been around for a while into a "sediment" that usually didn't get rescanned. I remember thinking that it might be worth trying this in smaller GC'd language interpreters like MicroPython. I don't remember much about it now, but I spent a while studying it and thinking about documenting and/or reimplementing it. SPITBOL (Speedy Implementation of SNOBOL, where SNOBOL was StriNg Oriented symBOLic language) was a quite amazing 1970s(?) implementation of a language that could be seen as an antecedent of something like Perl: https://github.com/spitbol