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,5c1d89373343bef8 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!news.glorb.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local1.nntp.dca.giganews.com!nntp.comcast.com!news.comcast.com.POSTED!not-for-mail NNTP-Posting-Date: Tue, 21 Dec 2004 15:53:39 -0600 From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Unchecked_Conversion help needed References: X-Newsreader: Tom's custom newsreader Message-ID: Date: Tue, 21 Dec 2004 15:53:39 -0600 NNTP-Posting-Host: 67.161.24.234 X-Trace: sv3-9YfUtmhy17QfmRc9VqyFmq0vtcaWkJJP/4QqnaNRu3X97k32i1caS8DdvOK5a9mX+gw1rARao4OItlC!t8r7bCDgouelcrJdlZQpxVRXXxX6/Z20tXiEEF4F+ccJFoqsVNKWgiYiDIGDpQ== X-Complaints-To: abuse@comcast.net X-DMCA-Complaints-To: dmca@comcast.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.22 Xref: g2news1.google.com comp.lang.ada:7134 Date: 2004-12-21T15:53:39-06:00 List-Id: > Message : in System.Address; > Bytes : in Positive; >... >What I would like to do is print out the message on the receiving side. > >Is this possible using unchecked_conversion ? Much is possible using unchecked_conversion. But why not something like: Actual_Message : String(Positive); for Actual_Message'address use Message; ... Ada.Text_IO.Put(Actual_Message(1 .. Bytes));