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-Thread: 103376,699cc914522aa7c4 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,UTF8 Path: g2news2.google.com!news3.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!nx02.iad01.newshosting.com!newshosting.com!208.49.83.154.MISMATCH!uns-out.usenetserver.com!news.usenetserver.com!pc02.usenetserver.com!news.flashnewsgroups.com-b7.4zTQh5tI3A!not-for-mail Newsgroups: comp.lang.ada Subject: Re: Wasteful internationalization References: <51p83bF1k9di7U1@mid.individual.net> <51rhs3F1m1jliU1@mid.individual.net> From: Stephen Leake Date: Mon, 29 Jan 2007 21:20:28 -0500 Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (windows-nt) Cancel-Lock: sha1:NvJ17k9WA1V6diWTPoXzSF5Mc3M= MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Complaints-To: abuse@flashnewsgroups.com Organization: FlashNewsgroups.com X-Trace: 0a3da45beab6e759e00d430124 Xref: g2news2.google.com comp.lang.ada:8700 Date: 2007-01-29T21:20:28-05:00 List-Id: Markus E Leypold writes: > Björn Persson writes: > >> Björn Persson wrote: >> >>> The constant ? is defined. >> >> Bah! That was supposed to be a π. (Obviously Knode, my Usenet client, is > > Was that supposed to be rendered as a box? Or does _my_ client not > get it right? Gnus (Emacs mail reader) on Windows shows the Greek letter Pi. Which is declared in Ada.Numerics in Ada 2005, with the normal numerical value: package Ada.Numerics is pragma Pure; Argument_Error : exception; Pi : constant := 3.14159_26535_89793_23846_26433_83279_50288_41971_69399_37511; ["03C0"] : constant := Pi; -- This is the greek letter Pi (for Ada 2005 AI-388). -- -- Stephe