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.3 required=5.0 tests=BAYES_00,FREEMAIL_FROM, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,62f1e030ed61b97b X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-06-13 13:14:04 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!deine.net!news.tiscali.fr!fr.clara.net!heighliner.fr.clara.net!newsfeed01.sul.t-online.de!newsmm01.sul.t-online.com!t-online.de!news.t-online.com!not-for-mail From: Freddy Newsgroups: comp.lang.ada Subject: Re: newbie inquiry Date: Thu, 13 Jun 2002 22:12:30 +0200 Organization: T-Online Message-ID: <3D08FCAE.D8977A71@web.de> References: <3D07AB92.9181741D@acm.org> <4519e058.0206130735.21da9a4@posting.google.com> Reply-To: Alfred.Hilscher@icn.siemens.de Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: news.t-online.com 1023999234 01 27353 2X7lbAIGS9Af1r 020613 20:13:54 X-Complaints-To: abuse@t-online.com X-Sender: 320001779794-0001@t-dialin.net X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de Xref: archiver1.google.com comp.lang.ada:25905 Date: 2002-06-13T22:12:30+02:00 List-Id: Ted Dennison schrieb: > What I remember from Modula-2 style was that you never saw anyone > using module dot notation to refer to objects in other modules. Not correct. Me, my friends and my colleques _always_ use "IMPORT x; x.". But - mostly, because the original standard from N. Wirth did offer only the "IMPORT x;" or you would have to mention _everything_ "FROM x IMPORT a,b,c ...". There was _no_ "IMPORT ALL x;" in Wirths definition. What I most miss in Ada is the "ARRAY OF BYTE" procedure parameter, which catches up _any_ actual parameter. Especially for communication routines (files, serial, ip) I liked it. Sometimes even an SET type would be nice.