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=-0.1 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM,PP_MIME_FAKE_ASCII_TEXT autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,5af5c381381ac5a7 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII Path: g2news2.google.com!news4.google.com!feeder.news-service.com!85.214.198.2.MISMATCH!eternal-september.org!.POSTED!not-for-mail From: Warren Newsgroups: comp.lang.ada Subject: Re: Ada requires too much typing! Date: Fri, 28 May 2010 15:26:48 +0000 (UTC) Organization: A noiseless patient Spider Message-ID: References: <4bfd19ba$0$2362$4d3efbfe@news.sover.net> Injection-Date: Fri, 28 May 2010 15:26:48 +0000 (UTC) Injection-Info: mx03.eternal-september.org; posting-host="9f8M0iN5t54V+4DF/iqO8g"; logging-data="16421"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+mrLZctGd7z8VDJPtHyJdnO/bKJidafdQ=" User-Agent: Xnews/5.04.25 X-Face: &6@]C2>ZS=NM|HE-^zWuryN#Z/2_.s9E|G&~DRi|sav9{E}XQJb*\_>=a5"q]\%A;5}LKP][1mA{gZ,Q!j Cancel-Lock: sha1:z9ktsgC/SqHRr5YQuoLqK5BBDdA= Xref: g2news2.google.com comp.lang.ada:12130 Date: 2010-05-28T15:26:48+00:00 List-Id: Adam Beneschan expounded in news:c86a76ae-5b25-4c13-a026-5439a57803f6 @k25g2000prh.googlegroups.com: > On May 27, 10:10�am, Warren wrote: >> Not so (snickers) - Perl is read once, rewritten many times. >> >> Even the perl code's author can't remember how it worked, >> 3 months later ;-) > > That's why Perl, and many other computer languages, provide features > called "comments". But I suspect our friend Rex would think that the > purpose of comments is just busywork to prove to some evil IT > supervisor that his employees aren't lazy. :) > > -- Adam I once had the, ahem, pleasure of fixing a summer student's program after he left to resume his education. He obviously did not understand what comments where for. They were mostly like this one: -- The next statement adds 1 to the current value of I I = I + 1 Yikesy! The comments not only didn't help but they got in the way of reading the code (not to mention that variables were also poorly named). Warren