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,5ac1c1813029999b X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-11-14 11:51:09 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!canoe.uoregon.edu!arclight.uoregon.edu!wn14feed!wn12feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!sccrnsc03.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: A bunch of questions that come after "Hello world" References: <5ad0dd8a.0211140218.6d48be15@posting.google.com> X-Newsreader: Tom's custom newsreader Message-ID: NNTP-Posting-Host: 12.234.13.56 X-Complaints-To: abuse@attbi.com X-Trace: sccrnsc03 1037303467 12.234.13.56 (Thu, 14 Nov 2002 19:51:07 GMT) NNTP-Posting-Date: Thu, 14 Nov 2002 19:51:07 GMT Organization: AT&T Broadband Date: Thu, 14 Nov 2002 19:51:07 GMT Xref: archiver1.google.com comp.lang.ada:30901 Date: 2002-11-14T19:51:07+00:00 List-Id: > protected type Door is > ... > end Door; > type Door_Nogo is record > -- can't put function / procedure here? But you can: type Door_Nogo is record Action : Door; end record; Front_Door, Back_Door : Door_Nogo; begin Front_Door.Action.Open; ...