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,b5ab7c96b188b59e X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-01-16 08:19:31 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!newsfeed.mathworks.com!nntp.TheWorld.com!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: The "()" operator revisited. Date: 16 Jan 2004 11:19:31 -0500 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: <4003EEEC.40106@noplace.com> <%1WMb.25$3f4.77748@news20.bellglobal.com> NNTP-Posting-Host: pip1-5.std.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: pcls4.std.com 1074269971 4709 192.74.137.185 (16 Jan 2004 16:19:31 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Fri, 16 Jan 2004 16:19:31 +0000 (UTC) User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Xref: archiver1.google.com comp.lang.ada:4464 Date: 2004-01-16T11:19:31-05:00 List-Id: "Mark A. Biggar" writes: > There are other issues as well. Ada has several things that look like > assigmment but are subtly different: Variable initialization, function > return, by-value parameter binding, etc. This is true, but there are really only *two* things that look like ":=" -- the assignment_statement, and initialization of a newly-created object. Everything besides assignment_statement falls into the latter category. - Bob