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,9e91bd3f3ee80c47 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!newsfeed2.dallas1.level3.net!news.level3.com!news.illinois.net!attcg1!ip.att.net!news.binc.net!kilgallen From: Kilgallen@SpamCop.net (Larry Kilgallen) Newsgroups: comp.lang.ada Subject: Re: reverse Integer'image(someString); Date: 25 Apr 2005 06:50:40 -0500 Organization: LJK Software Message-ID: References: <426cb55e$0$30475$ba620e4c@news.skynet.be> NNTP-Posting-Host: eisner.encompasserve.org X-Trace: grandcanyon.binc.net 1114429823 16660 192.135.80.34 (25 Apr 2005 11:50:23 GMT) X-Complaints-To: abuse@binc.net NNTP-Posting-Date: Mon, 25 Apr 2005 11:50:23 +0000 (UTC) Xref: g2news1.google.com comp.lang.ada:10682 Date: 2005-04-25T06:50:40-05:00 List-Id: In article , "David C. Hoos, Sr." writes: > Jeff C" wrote in message > news:KIednSCHV-GzTfHfRVn-qw@comcast.com... >> Adrien Plisson wrote: > snip >> What does work fine are: >> >> a) >> >> Text_IO.Put_Line(Integer'Image(Some_Integer)); >> >> b) >> >> declare >> Some_String : constant String := Integer'Image(Some_Integer); >> begin >> ...play with Some_String >> end; > > The "constant" in the declaration of Some_String is not only > unnecessary, but would prevent some types of "playing" > with Some_String. It is required with Ada 83.