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,1dd28d5040ded1f8 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-05-13 00:59:51 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!fu-berlin.de!uni-berlin.de!pec-14-222.tnt3.hh2.uunet.DE!not-for-mail From: Dmitry A. Kazakov Newsgroups: comp.lang.ada Subject: Re: Announce: Grace project site operational Date: Mon, 13 May 2002 10:01:02 +0200 Message-ID: References: <4519e058.0205101135.7d59f4c8@posting.google.com> NNTP-Posting-Host: pec-14-222.tnt3.hh2.uunet.de (149.225.14.222) Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: fu-berlin.de 1021276789 20636603 149.225.14.222 (16 [77047]) X-Newsreader: Forte Agent 1.8/32.548 Xref: archiver1.google.com comp.lang.ada:23942 Date: 2002-05-13T10:01:02+02:00 List-Id: On 10 May 2002 12:35:45 -0700, dennison@telepath.com (Ted Dennison) wrote: >Dmitry A. Kazakov wrote in message news:... > >> We already have two different words for IS: "is" and ":=", "use" would >> be a third one. (:-)) > >I always thought of ":=" as "gets" rather than "is". If it were "is", >then > > A := 2; > B := 10; > A := B; > >Ought to pull some kind of exception. Perhaps something like >"non_euclidian_geometry". :-) Actually I didn't mean assignment. I thought about initialization: X : constant Integer := 2; which is an equivalent [alas, incomplete with regard of tagged types (:-()] to function X return Integer is begin return 2; end X; That could be: X : constant function return Integer := begin return 2; end X; (:-)) --- Regards, Dmitry Kazakov www.dmitry-kazakov.de