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,ae9506fd4dcf7090 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-10-21 07:14:23 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!canoe.uoregon.edu!logbridge.uoregon.edu!nntp-server.caltech.edu!attla2!attla1!ip.att.net!bos-service1.ext.raytheon.com!dfw-service2.ext.raytheon.com.POSTED!not-for-mail From: Wes Groleau User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.1) Gecko/20020826 X-Accept-Language: en,es-MX,es,pt,fr-CA,fr MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Concatenation and Characters References: <44hp9.807$_u6.205@nwrddc01.gnilink.net> <3DA5AE5F.3030902@attbi.com> <3DB03EF1.EE771923@mmm.com> <3DB079ED.2070200@attbi.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Message-ID: <3ZTs9.1528$Bd4.11780@dfw-service2.ext.raytheon.com> Date: Mon, 21 Oct 2002 09:13:53 -0500 NNTP-Posting-Host: 151.168.133.155 X-Complaints-To: news@ext.ray.com X-Trace: dfw-service2.ext.raytheon.com 1035209663 151.168.133.155 (Mon, 21 Oct 2002 09:14:23 CDT) NNTP-Posting-Date: Mon, 21 Oct 2002 09:14:23 CDT Organization: Raytheon Company Xref: archiver1.google.com comp.lang.ada:29979 Date: 2002-10-21T09:13:53-05:00 List-Id: Dmitry A.Kazakov wrote: > Then the language shall require them to be either initialized or > *explicitly* specified as uninitialized: It already does: O : Some_Type; -- explicitly uninitialized O : Some_Type := Default; -- explicitly initialized It's fairly obvious which is which, and there is no third option that I know of. > procedure Foo (X : out Integer := 23); That's obviously explicitly initialized. > function Foo returns Integer := 23; You're saying that instead raising program_error for failing to hit a return statement we should look to a default result on the spec? No, thank you.