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,bffcdbd805329ff8 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-08-29 12:53:36 PST Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newshub2.home.com!news.home.com!news1.rdc1.sfba.home.com.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Ada and Internet stuff References: <3B8D3BC2.B3D9DBF6@san.rr.com> X-Newsreader: Tom's custom newsreader Message-ID: <3Lbj7.28241$sa.14185161@news1.rdc1.sfba.home.com> Date: Wed, 29 Aug 2001 19:53:35 GMT NNTP-Posting-Host: 24.7.82.199 X-Complaints-To: abuse@home.net X-Trace: news1.rdc1.sfba.home.com 999114815 24.7.82.199 (Wed, 29 Aug 2001 12:53:35 PDT) NNTP-Posting-Date: Wed, 29 Aug 2001 12:53:35 PDT Organization: Excite@Home - The Leader in Broadband http://home.com/faster Xref: archiver1.google.com comp.lang.ada:12578 Date: 2001-08-29T19:53:35+00:00 List-Id: > I thought I could do > declare > s : String; > begin > s := Encode(yadda); > end; > but that doesn't work. Bummer. But declare s : String := Encode(yadda); begin ada.text_io.put_line(s); -- or whatever... end; does work and is a standard Ada cliche.