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,7f4d16c4ee371eb5 X-Google-Attributes: gid103376,public From: Gary Scott Subject: Re: Why is it Called a Package? Date: 2000/03/28 Message-ID: <38E11F3B.AB454E54@lmtas.lmco.com>#1/1 X-Deja-AN: 603584940 Content-Transfer-Encoding: 7bit References: <38DF7F38.8D656ABD@lmtas.lmco.com> <2000Mar27.111655.1@eisner> X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Organization: LMTAS Mime-Version: 1.0 Newsgroups: comp.lang.ada Date: 2000-03-28T00:00:00+00:00 List-Id: Robert A Duff wrote: > > Ada's procedures don't work exactly like Pascal's procedures, either. > For example parameter passing is completely different. But the two > things serve the same basic purpose, so it makes sense to call them by > the same name. Too bad other languages call them "functions" or "void > functions" or "methods" or "subroutines". And some languages have "functions", "subroutines", AND "procedures" with "procedure" being the method used to expose or hide global/local variables and other environment stuff (i.e. procedure is a sub-subroutine (void function) or a sub-function). > > > - Bob