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.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,a9bab26b6fe54a36,start X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!postnews.google.com!u26g2000vby.googlegroups.com!not-for-mail From: Anh Vo Newsgroups: comp.lang.ada Subject: Pondering what rationale behind record type Date: Mon, 9 May 2011 10:47:23 -0700 (PDT) Organization: http://groups.google.com Message-ID: NNTP-Posting-Host: 149.32.224.33 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: posting.google.com 1304963243 4148 127.0.0.1 (9 May 2011 17:47:23 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Mon, 9 May 2011 17:47:23 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: u26g2000vby.googlegroups.com; posting-host=149.32.224.33; posting-account=Qh2kiQoAAADpCLlhT_KTYoGO8dU3n4I6 User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows NT 5.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1,gzip(gfe) Xref: g2news2.google.com comp.lang.ada:20167 Date: 2011-05-09T10:47:23-07:00 List-Id: Some time I am wondering why record type has different syntax pattern than the rest with respect to type ending text. That is it ends with 'end record;' no matter what the identifier is. The rest of others end with 'end identifier'. Below are examples regarding this subject. type Data is record X_Coord : Integer := 0; Y_Coord : Integer := 0; -- more components end record; task type Event_Monitor is entry Start; entry Process (...) end Event_Monitor; Anh Vo