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=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,54889de51045a215 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-10-20 03:58:02 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!news.agarik.com!news.agarik.com!usenet-fr.net!enst.fr!melchior!cuivre.fr.eu.org!melchior.frmug.org!not-for-mail From: christoph.grein@eurocopter.com Newsgroups: comp.lang.ada Subject: Re: += in ada Date: Mon, 20 Oct 2003 12:42:53 +0200 (MET DST) Organization: Cuivre, Argent, Or Message-ID: Reply-To: grein@egypt.otn.eurocopter.de NNTP-Posting-Host: lovelace.ada-france.org Mime-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii X-Trace: melchior.cuivre.fr.eu.org 1066647437 26006 80.67.180.195 (20 Oct 2003 10:57:17 GMT) X-Complaints-To: usenet@melchior.cuivre.fr.eu.org NNTP-Posting-Date: Mon, 20 Oct 2003 10:57:17 +0000 (UTC) To: comp.lang.ada@ada-france.org Return-Path: X-Authentication-Warning: mail.eurocopter.com: uucp set sender to using -f Content-MD5: EZhczHJqwYxNOkB8ApPDGg== X-Mailer: dtmail 1.2.1 CDE Version 1.2.1 SunOS 5.6 sun4u sparc X-Virus-Scanned: by amavisd-new-20030616-p5 (Debian) at ada-france.org X-BeenThere: comp.lang.ada@ada-france.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Gateway to the comp.lang.ada Usenet newsgroup List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Xref: archiver1.google.com comp.lang.ada:1192 Date: 2003-10-20T12:42:53+02:00 > I realize that standard Ada is stuck with ":=", of course. However, I > have developed a relatively simple pre-processor that effectively > implements a dialect of Ada that uses "=". I call it "MyAda". I also > have the inverse pre-processor, so I can go in both directions. With a > few additional utilities, it should be possible for a member of an Ada > devepment team to use MyAda without anyone else on the team ever even > knowing. I realize that this is a long shot, but as I said, I am a bit > obsessive/compulsive. Russ, Try YourAda on procedure P is procedure Russ (X: in Boolean) is begin null; end Russ; X, Y: Boolean; begin Russ (X => Y); Russ (X = Y); end P; And please, do tell me the outcome.