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,1c4b8fdfa762b2bb X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-04-05 09:06:16 PST Path: supernews.google.com!sn-xit-03!supernews.com!cyclone-sjo1.usenetserver.com!news-out-sjo.usenetserver.com!e420r-sjo4.usenetserver.com!news-out.usenetserver.com!newshub2.rdc1.sfba.home.com!news.home.com!enews.sgi.com!coop.net!newsfeed1.global.lmco.com!svlnews.lmms.lmco.com!not-for-mail From: Paul Storm Newsgroups: comp.lang.ada Subject: Re: Hebrew language character set Date: Thu, 05 Apr 2001 08:56:07 -0800 Organization: rse Message-ID: <3ACC9597.14D3B23D@lmco.com> References: <3ACA11B0.9AAFDDDD@lmco.com> <3ACB85DF.9E6DBD03@lmco.com> <3ACC6E83.5B860AC5@free.fr> NNTP-Posting-Host: 129.197.210.20 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 4.5 [en] (WinNT; U) X-Accept-Language: en Xref: supernews.google.com comp.lang.ada:6513 Date: 2001-04-05T08:56:07-08:00 List-Id: Jean-Marc, Of course I RTFM first. I said I was a newbie to Ada, not a jerk. (lol) Below is the entire section on Wide Text Input-Output(A.11) from the RM. It is not very useful, IMHO. Frankly, I thought there would be more after hearing of Ada's robust language definition. Now I'm not so sure. Apparently this is not the trivial problem I thought it was. As a Ada newbie it makes me wonder about Ada's capabilities for program internationalization. In our internet age that is important. Paul Storm A.11 Wide Text Input-Output The package Wide_Text_IO provides facilities for input and output in human-readable form. Each file is read or written sequentially, as a sequence of wide characters grouped into lines, and as a sequence of lines grouped into pages. Static Semantics The specification of package Wide_Text_IO is the same as that for Text_IO, except that in each Get, Look_Ahead, Get_Immediate, Get_Line, Put, and Put_Line procedure, any occurrence of Character is replaced by Wide_Character, and any occurrence of String is replaced by Wide_String. Nongeneric equivalents of Wide_Text_IO.Integer_IO and Wide_Text_IO.Float_IO are provided (as for Text_IO) for each predefined numeric type, with names such as Ada.Integer_Wide_Text_IO, Ada.Long_Integer_Wide_Text_IO, Ada.Float_Wide_Text_IO, Ada.Long_Float_Wide_Text_IO.