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=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,c35f5730546f9495 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-05-31 02:51:02 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!news-FFM2.ecrc.net!news.cesnet.cz!crax.cesnet.cz!news.felk.cvut.cz!not-for-mail From: "Sergey Koshcheyev" Newsgroups: comp.lang.ada Subject: Re: String Date: Sat, 31 May 2003 11:39:06 +0200 Organization: Czech Technical University Message-ID: References: NNTP-Posting-Host: r2c113.mistral.cz X-Trace: ns.felk.cvut.cz 1054373941 50159 62.245.66.113 (31 May 2003 09:39:01 GMT) X-Complaints-To: usenet@ns.felk.cvut.cz NNTP-Posting-Date: Sat, 31 May 2003 09:39:01 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Xref: archiver1.google.com comp.lang.ada:38191 Date: 2003-05-31T11:39:06+02:00 List-Id: wrote in message news:mailman.20.1054371405.386.comp.lang.ada@ada.eu.org... > Hello group! > I only have one question at this time and I will be out of the groups current discussion. At least for a while anyway. > > Where is the type String defined? That is, which file, which package. I grep'd all the spec files that came with the GNAT compiler and there is no line that says "type String is ...". Is it in a lib somewhere? what filename should I look for? It's defined in the package Standard. This is a special package, so it isn't contained in any file, but is sort of preloaded into GNAT. If you run "gnatpsta" (short for "print Standard"), you can see its contents. Sergey.