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,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 2002:a24:7546:: with SMTP id y67-v6mr9299949itc.26.1538762309655; Fri, 05 Oct 2018 10:58:29 -0700 (PDT) X-Received: by 2002:a9d:6309:: with SMTP id q9-v6mr155269otk.5.1538762309550; Fri, 05 Oct 2018 10:58:29 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!feeder.eternal-september.org!news.gegeweb.eu!gegeweb.org!usenet-fr.net!proxad.net!feeder1-2.proxad.net!209.85.166.215.MISMATCH!z5-v6no94079ite.0!news-out.google.com!l70-v6ni83itb.0!nntp.google.com!x98-v6no95185ita.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Fri, 5 Oct 2018 10:58:29 -0700 (PDT) In-Reply-To: <0f5608ef-0038-491c-b15f-f67bcc76fae8@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=2a00:6020:19ff:e600:dc56:9c66:b830:3b46; posting-account=rmHyLAoAAADSQmMWJF0a_815Fdd96RDf NNTP-Posting-Host: 2a00:6020:19ff:e600:dc56:9c66:b830:3b46 References: <0f5608ef-0038-491c-b15f-f67bcc76fae8@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <00285ebf-6ede-44da-848f-456930dc7475@googlegroups.com> Subject: Re: Record operations (Algebraic Data Types and printing) From: AdaMagica Injection-Date: Fri, 05 Oct 2018 17:58:29 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Xref: reader02.eternal-september.org comp.lang.ada:54487 Date: 2018-10-05T10:58:29-07:00 List-Id: Am Freitag, 5. Oktober 2018 19:46:32 UTC+2 schrieb Henrik H=C3=A4rk=C3=B6ne= n: > Now as I'm playing with the records, I'd like to print them out, just for= "debugging" purposes. Is there any convenient way to splash them out in co= nsole? Some sort of default string representation? Seems that 'Image attrib= ute works only for scalar types. Do it yourself... There is no such default. A record may have private (even limited) components. What should a default = for these look like?