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,5558619e172f782a,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-08-15 21:56:28 PST Date: Sat, 16 Aug 2003 12:54:59 +0800 From: Adrian Hoe User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20021204 X-Accept-Language: en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Null record X-Enigmail-Version: 0.71.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit NNTP-Posting-Host: 219.95.187.227 X-Original-NNTP-Posting-Host: 219.95.187.227 Message-ID: <3f3db971_1@news.tm.net.my> X-Trace: news.tm.net.my 1061009777 219.95.187.227 (16 Aug 2003 12:56:17 +0800) Organization: TMnet Malaysia Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!news-out.visi.com!petbe.visi.com!ash.uu.net!news1.tm.net.my Xref: archiver1.google.com comp.lang.ada:41554 Date: 2003-08-16T12:54:59+08:00 List-Id: Hi, Just a silly question. A null record can be implemented as follow: Method 1: type Blank is new Some_Record with null record; Method 2: type Blank is new Some_Record with record null; end record; Which is the most popular form and why? I assume personal preference influences the choice. Regards,