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,38fc011071df5a27 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-06-19 19:08:38 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: amir@iae.nsk.su (Amir Yantimirov) Newsgroups: comp.lang.ada Subject: Re: Ideas for Ada 200X Date: 19 Jun 2003 19:08:37 -0700 Organization: http://groups.google.com/ Message-ID: <5115eb96.0306191808.155c4a05@posting.google.com> References: <3EECA772.4B662024@adaworks.com> <5115eb96.0306181631.1d70482b@posting.google.com> NNTP-Posting-Host: 81.1.215.198 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1056074917 14651 127.0.0.1 (20 Jun 2003 02:08:37 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 20 Jun 2003 02:08:37 GMT Xref: archiver1.google.com comp.lang.ada:39470 Date: 2003-06-20T02:08:37+00:00 List-Id: Preben Randhol wrote in message news:... > Amir Yantimirov wrote: > > While not omit := at all and use postfix operator in expression: > > > > X# + A; > > min ( X#, 0 ); > > X# + # * 2; > > X#.Next; > > > > Er, too C-ish. (Or C#-ish ?) Then so: > > I don't know. I only know that I don't understand one of the lines > above. What are they supposed to express? X# + A; -- X := X + A; min ( X#, 0 ); -- X := min ( X, 0 ); X# + # * 2; -- X := X + X * 2; (it should be **2 to have sense) X#.Next; -- X := X.Next; http://www174.pair.com/yamir/programming/syntax.htm Amir Yantimirov