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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,c63aa81a67eceb8f X-Google-Attributes: gid103376,public From: Brian Rogoff Subject: Re: Ragged Array Proposal Date: 1999/09/27 Message-ID: #1/1 X-Deja-AN: 530157130 References: <37e7c08e@eeyore.callnetuk.com> <7satei$e2q$1@nnrp1.deja.com> <37EA4E91.1D4D1FC@averstar.com> <37eaa24b@eeyore.callnetuk.com> <37ebb11e@eeyore.callnetuk.com> <7siirf$slh$1@nnrp1.deja.com> Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: nntp1.ba.best.com 938492050 207 bpr@206.184.139.136 MIME-Version: 1.0 Newsgroups: comp.lang.ada Date: 1999-09-27T00:00:00+00:00 List-Id: On 27 Sep 1999, Hyman Rosen wrote: > Robert Dewar writes: > > "more complicated" /= longer > > > > Actually the C version is quite a bit more complex, because of > > the rather peculiar rules about whether string pointers are > > or are not constants, and about the issue of whether > > "abc" == "abc" (in general of course the answer in C is no) > > > > It looks simpler, but that can hide a lot of sins :-) > > Like I said, I don't have proper Ada intuition. Frankly, for all its > supposed readability, looking at Ada code makes my eyes and my brain > swim. I think it's because Ada uses too many words and not enough > symbols. I've felt that way ever since I first saw Ada code lo those > many years ago, and I still feel so today. That's funny. I actually agree that Ada is a bit wordy for my tastes, and would prefer a few more symbols, but I find that reading C++ "makes my eyes and brain swim" because of its overuse of symbols, weird overloadings of words like "static", and generally bad syntax. I find well written Ada far easier to read than C or C++, even though I write much more C family language code! To be fair, C++ is the way it is largely to remain compatible with C; reading the examples in the "C++ resyntaxed" paper (where C++ gets a slightly more Pascalish syntax) was much easier to me. I guess you can only please some of the people some of the time... -- Brian