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,66bc6b039f1e005d X-Google-Attributes: gid103376,public From: john@assen.demon.co.uk.nospam (John McCabe) Subject: Re: Three simple questions Date: 2000/10/09 Message-ID: <39e2588f.21565740@news.demon.co.uk>#1/1 X-Deja-AN: 679524335 X-NNTP-Posting-Host: assen.demon.co.uk:158.152.218.101 References: <2BED68CA963D6D55.A78776F656DA0452.75A61ED22116F1B6@lp.airnews.net> X-Trace: news.demon.co.uk 971135438 nnrp-02:20483 NO-IDENT assen.demon.co.uk:158.152.218.101 Newsgroups: comp.lang.ada X-Complaints-To: abuse@demon.net Date: 2000-10-09T00:00:00+00:00 List-Id: Frank Christiny wrote: >1. What is the correct pronunciation of Dr. Ichbiah's name? > Is the "ch" pronounced as in "Loch" or as in "each"? Is the > final "h" is silent? Does it matter? >2. What is the rationale for case-insensitivity in the language? At least one reason is for safety against misspelling. In case-sensitive languages e.g. in C, if I had int an_Int; : I am beginning to think it is mostly for historical reasons > (some machines didn't have two case letters way back then, etc.). > Are there any real technical reasons for why this is so even > after Ada95, besides preserving backwards compatibilty? >3. How can one block-comment in Ada? You can't. > It can become cumbersome sometimes, adding all those "--"s in > front of a large block of code one wants to "test out" on the fly. > Again, are there any good technical-engineering reasons why this > feature was left out? This is another safety issue. If you want to comment out regions of code use something like ada-mode with Emacs. Hope this helps. Best Regards John McCabe