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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,5ea968aeb8c7f10d X-Google-Attributes: gid103376,public From: bobduff@world.std.com (Robert A Duff) Subject: Re: Do I Really Need A Supervisor? Date: 1997/03/13 Message-ID: #1/1 X-Deja-AN: 225181827 References: <3327438E.942@earthlink.net> Organization: The World Public Access UNIX, Brookline, MA Newsgroups: comp.lang.ada Date: 1997-03-13T00:00:00+00:00 List-Id: In article , Samuel Tardieu wrote: >Bob> An Ada 95 program does not need a main procedure. > >What do you mean? He didn't write "a 'main' procedure", but "a main >procedure" which is quite different. I meant exactly what I wrote: An Ada 95 program does not need a main procedure (or main function, for that matter). That is, an Ada 95 program can consist of a bunch of library packages, without any main subprogram. This is different from Ada 83, which required a main subprogram (called a main program in Ada 83, despite the fact that it's not a program). Note "optionally" and "if specified" in 10.2(7) -- the user is not required to have a main subprogram. Note "if the partition has one" in 10.2(21) and "if there is no main subprogram" in 10.2(23). See also 10.2(34), which explains the reason. See also AARM-10.2(34.e), which says that this change is a language extension. - Bob