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,79bbf7e359159d0d X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-04-12 14:26:39 PST Path: supernews.google.com!sn-xit-02!supernews.com!news.gv.tsc.tdk.com!falcon.america.net!sunqbc.risq.qc.ca!news.maxwell.syr.edu!wn1feed!worldnet.att.net!135.173.83.71!wnfilter1!worldnet-localpost!bgtnsc06-news.ops.worldnet.att.net.POSTED!not-for-mail Message-ID: <3AD61D1E.5E1AA681@worldnet.att.net> From: James Rogers X-Mailer: Mozilla 4.76 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: newbie can't get exceptions to work! References: <25%y6.2364$jz.201607@www.newsranger.com> <3ACDB29E.45B91316@earthlink.net> <3AD2788C.7F2BAFA3@worldnet.att.net> <9b1oqv$ikb$2@taliesin.netcom.net.uk> <3AD4D3C2.E45751D9@worldnet.att.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Thu, 12 Apr 2001 21:22:37 GMT NNTP-Posting-Host: 12.74.130.74 X-Complaints-To: abuse@worldnet.att.net X-Trace: bgtnsc06-news.ops.worldnet.att.net 987110557 12.74.130.74 (Thu, 12 Apr 2001 21:22:37 GMT) NNTP-Posting-Date: Thu, 12 Apr 2001 21:22:37 GMT Organization: AT&T Worldnet Xref: supernews.google.com comp.lang.ada:6840 Date: 2001-04-12T21:22:37+00:00 List-Id: Ted Dennison wrote: > I'd actually agree with you that its silly. However, with the extra stuff on the > end its at least not *harmful* any more, so I can live with the sillyness. I > don't for a minute buy the argument that people stay away from Ada because they > don't want to type "end" instead of "}". That's an *excuse*, not a serious > argument. But some folks here seem to honestly believe it, and this ought to at > least make them happy. I remember when most students learned Pascal as their first programming language. Several students were more comfortable with C if they added the following bits of code: #define BEGIN { #define END } They could then write their source code without the "{}" pairs, and the proprocessor would make the appropriate substitutions. I also remember that serious C enthusiasts found this adjustment to be revolting. Example: #define BEGIN { #define END } #include int main () BEGIN printf("Hello World\n"); END Jim Rogers Colorado Springs, Colorado USA