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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,7eaf9f2597de2259 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-10-18 09:24:57 PST Newsgroups: comp.lang.ada Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newspeer.radix.net!uunet!ash.uu.net!world!bobduff From: Robert A Duff Subject: Re: on package naming, should the word "_pkg" be part of it? Sender: bobduff@world.std.com (Robert A Duff) Message-ID: Date: Thu, 18 Oct 2001 16:23:07 GMT References: <9pif1o01btl@drn.newsguy.com> <3BBD12F1.9BED0B70@acm.org> <3BC0B1D4.21C79A8@acm.org> <3BC1DB22.E127B53D@boeing.com> Organization: The World Public Access UNIX, Brookline, MA X-Newsreader: Gnus v5.3/Emacs 19.34 Xref: archiver1.google.com comp.lang.ada:14898 Date: 2001-10-18T16:23:07+00:00 List-Id: Jeffrey Carter writes: > Even this is incorrect. Current_Vehicle is not a car, it is a collection > of information about a car: > > Current_Vehicle : Car_Info; This is to make sure that the person reading the code doesn't mistakenly assume that the computer's memory chips actually contain cars? ;-) Here's one of the few types I can think of whose objects don't contain information: type Color is (Red); (so of course Color'Size should be 0). - Bob