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,aa7f494bf30adbc7 X-Google-Attributes: gid103376,public Path: g2news1.google.com!news1.google.com!news.glorb.com!wns13feed!worldnet.att.net!attbi_s02.POSTED!53ab2750!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: [newbie] simple(?) data structures References: X-Newsreader: Tom's custom newsreader Message-ID: NNTP-Posting-Host: 24.6.132.82 X-Complaints-To: abuse@comcast.net X-Trace: attbi_s02 1087102777 24.6.132.82 (Sun, 13 Jun 2004 04:59:37 GMT) NNTP-Posting-Date: Sun, 13 Jun 2004 04:59:37 GMT Organization: Comcast Online Date: Sun, 13 Jun 2004 04:59:37 GMT Xref: g2news1.google.com comp.lang.ada:1439 Date: 2004-06-13T04:59:37+00:00 List-Id: > type Go_Board( Go_Size : Go_Range ) is private; But the OP now expands on his initial request with > And perhaps I want to later extend the type. Maybe with a move history. so he would want type Go_Board( Go_Size : Go_Range ) is tagged private; to allow such additions later.