From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,a3bf872bb81a1f2b X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-12-12 02:08:45 PST Path: archiver1.google.com!news1.google.com!sn-xit-02!supernews.com!news.tele.dk!small.news.tele.dk!62.112.0.25!newsfeed.online.be!newsfeed.esat.net!nslave.kpnqwest.net!nloc2.kpnqwest.net!nloc.kpnqwest.net!nmaster.kpnqwest.net!nreader1.kpnqwest.net.POSTED!not-for-mail Message-ID: <3C172DBE.3B7DB9E9@eurocontrol.int> From: Ian Wild Organization: Eurocontrol X-Mailer: Mozilla 4.7 [en] (X11; I; Linux 2.0.30 i686) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: ASCL a doomed idea? References: <7RQP7.4406$Yy.272014@rwcrnsc53> <9v0crv$bo2bi$2@ID-25716.news.dfncis.de> <3C13D980.748CCCDA@acm.org> <9v37s0$cdmva$3@ID-25716.news.dfncis.de> <30wR7.37506$Yy.395982@rwcrnsc53> <9v6cn5$dcfkh$1@ID-25716.news.dfncis.de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cache-Post-Path: ecw.eurocontrol.be!unknown@193.221.189.77 X-Cache: nntpcache 2.3.3 (see http://www.nntpcache.org/) Date: Wed, 12 Dec 2001 10:08:45 GMT NNTP-Posting-Host: 193.221.170.178 X-Complaints-To: abuse@Belgium.EU.net X-Trace: nreader1.kpnqwest.net 1008151725 193.221.170.178 (Wed, 12 Dec 2001 11:08:45 MET) NNTP-Posting-Date: Wed, 12 Dec 2001 11:08:45 MET Xref: archiver1.google.com comp.lang.ada:17823 Date: 2001-12-12T10:08:45+00:00 List-Id: Nick Roberts wrote: > > ... There are several programming languages in which a string is > explicitly a list. Think about LISP. There may indeed be several such languages, but Lisp isn't one of them A Lisp string is an array of characters. (subtypep 'string 'array) ==> T > It seems utterly bizarre and beyond all > reason to me to suggest that a string is not, in general, a kind of list. (subtypep 'string 'list) ==> NIL > It's a list of characters. Apparently not. > Isn't that something a four-year-old would > understand? Maybe. But your typical 4yo doesn't care about O(n) v O(1) access times.