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,6aa1ec264ce25142 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.66.84.41 with SMTP id v9mr3031242pay.43.1346187181871; Tue, 28 Aug 2012 13:53:01 -0700 (PDT) Received: by 10.68.189.228 with SMTP id gl4mr3882201pbc.4.1346187181819; Tue, 28 Aug 2012 13:53:01 -0700 (PDT) Path: t10ni106882016pbh.0!nntp.google.com!4no23656281pbn.1!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Tue, 28 Aug 2012 13:53:01 -0700 (PDT) In-Reply-To: <874nnmhki2.fsf@mid.deneb.enyo.de> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=69.20.190.126; posting-account=lJ3JNwoAAAAQfH3VV9vttJLkThaxtTfC NNTP-Posting-Host: 69.20.190.126 References: <1p5r39cusgc1n$.18nj9sytckk6$.dlg@40tude.net> <874nnmhki2.fsf@mid.deneb.enyo.de> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <027d5417-06c0-46f5-a04a-70269f593b18@googlegroups.com> Subject: Re: Real syntax problems in Ada From: Shark8 Injection-Date: Tue, 28 Aug 2012 20:53:01 +0000 Content-Type: text/plain; charset=ISO-8859-1 Date: 2012-08-28T13:53:01-07:00 List-Id: On Tuesday, August 28, 2012 1:41:42 PM UTC-6, Florian Weimer wrote: > > There is no convenient way to write zero-element and one-element array > aggregates. Named null range for arrays? That'd take care of zero-elements. Single-element... I'm not sure there's a good way to handle it [better] than what we have: X : Array_Type:= ( 1 => ELEMENT ); -- or similar.