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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,243dc2fb696a49cd X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!postnews1.google.com!not-for-mail From: kevin.cline@gmail.com (Kevin Cline) Newsgroups: comp.lang.ada Subject: Re: Ada Popularity: Comparison of Ada/Charles with C++ STL (and Perl) Date: 30 Sep 2004 16:54:22 -0700 Organization: http://groups.google.com Message-ID: References: <1ec946d1.0409230820.455ad242@posting.google.com> <3673998.bj16mkkOu2@linux1.krischik.com> <1700922.2nPlMsa4Ny@linux1.krischik.com> <1636756.M7hCqjsVMv@linux1.krischik.com> NNTP-Posting-Host: 170.215.189.183 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1096588463 6183 127.0.0.1 (30 Sep 2004 23:54:23 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 30 Sep 2004 23:54:23 +0000 (UTC) Xref: g2news1.google.com comp.lang.ada:4472 Date: 2004-09-30T16:54:22-07:00 List-Id: Bj�rn Persson wrote in message news:... > Kevin Cline wrote: > > > In C++: > > procedure Demo is > > > struct X > > { > > int a; > > int b; > > }; > > type X Index is (A, B); > type X is array(X index) of Integer; Looks like I should have written: struct X { int a; int b; float c; std::string d; }