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,8f2146b9c1ab93cc X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-03-12 05:28:34 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!news.tele.dk!small.news.tele.dk!193.174.75.178!news-fra1.dfn.de!news-koe1.dfn.de!news.rhrz.uni-bonn.de!news.uni-stuttgart.de!not-for-mail From: Peter Hermann Newsgroups: comp.lang.ada Subject: Re: ToString? Date: Tue, 12 Mar 2002 13:24:33 +0000 (UTC) Organization: Comp.Center (RUS), U of Stuttgart, FRG Message-ID: References: NNTP-Posting-Host: iris16.csv.ica.uni-stuttgart.de X-Trace: news.uni-stuttgart.de 1015939473 17680 129.69.118.32 (12 Mar 2002 13:24:33 GMT) X-Complaints-To: news@news.uni-stuttgart.de NNTP-Posting-Date: Tue, 12 Mar 2002 13:24:33 +0000 (UTC) User-Agent: tin/pre-1.4-980117 (UNIX) (IRIX/6.5 (IP22)) Xref: archiver1.google.com comp.lang.ada:21113 Date: 2002-03-12T13:24:33+00:00 List-Id: Nazgul wrote: > Is there something like Integer'ToString(xxx) that converts an integer to a > string ? with ada.text_io; use ada.text_io; procedure imagevalue is i : integer; f : float; begin null; ada.text_io.put_line("starting test program imagevalue"); i := integer'value("4711"); f := float'value("47.1"); ada.text_io.put_line(integer'image(i)); ada.text_io.put_line( float'image(f)); end imagevalue; -- --Peter Hermann(49)0711-685-3611 fax3758 ica2ph@csv.ica.uni-stuttgart.de --Pfaffenwaldring 27 Raum 114, D-70569 Stuttgart Uni Computeranwendungen --http://www.csv.ica.uni-stuttgart.de/homes/ph/ --Team Ada: "C'mon people let the world begin" (Paul McCartney)