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=-0.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,1116ece181be1aea X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-09-09 13:34:32 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!newshub.sdsu.edu!elnk-nf2-pas!elnk-pas-nf1!newsfeed.earthlink.net!border3.nntp.aus1.giganews.com!intern1.nntp.aus1.giganews.com!nntp.giganews.com!nntp.gbronline.com!news.gbronline.com.POSTED!not-for-mail NNTP-Posting-Date: Tue, 09 Sep 2003 15:34:30 -0500 Date: Tue, 09 Sep 2003 15:35:48 -0500 From: Wes Groleau Reply-To: groleau@freeshell.org Organization: Ain't no organization here! User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en, es-mx, pt-br, fr-ca MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Is the Writing on the Wall for Ada? References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Message-ID: NNTP-Posting-Host: 69.9.86.114 X-Trace: sv3-yyeLKQBIeFTQev5BYvRdzkl//VyAA2sVtOIfDei37T24hCG7KDrkgn2pWOe6UZ+NbVHx22QEFcNgsLV!qKc552NVJC7Sj5bty/UNpcnzVmxkHvl/TUiJaGwU93zuH3ibl1BXkxCR1IM8FI8HUVfqm92JuUET!3Q== X-Complaints-To: abuse@gbronline.com X-DMCA-Complaints-To: abuse@gbronline.com X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.1 Xref: archiver1.google.com comp.lang.ada:42329 Date: 2003-09-09T15:35:48-05:00 List-Id: Russ wrote: > The corresponding equations for the ellipsoidal model of the earth are > far more complicated, but even these relatively simple equations > demonstrate the awkwardness of using Java for algorithms. The latter > expression has no less than 9 math functions plus a constant (pi), and > you're telling me I must precede each one with "math." (or do some > other nonstandard trick). As much as I prefer Ada over Java, this particular point is not a good reason. class whatever { static float sin (float F) { return Math.sin(F); } // Now you can use sin() as easily as in Ada. // The above maybe a "nonstandard trick" but // it's certainly not painful. } -- Wes Groleau When all you have is a perl, everything looks like a string.