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!news2.google.com!proxad.net!newsfeed.stueberl.de!eusc.inter.net!cs.tu-berlin.de!uni-duisburg.de!not-for-mail From: Georg Bauhaus Newsgroups: comp.lang.ada Subject: Re: [newbie] simple(?) data structures Date: Mon, 14 Jun 2004 12:29:16 +0000 (UTC) Organization: GMUGHDU Message-ID: References: <2j1e30Fsrg8vU1@uni-berlin.de> <2j21dlFrvu2sU1@uni-berlin.de> <-rednX6oT5GBeVHdRVn-ig@comcast.com> NNTP-Posting-Host: l1-hrz.uni-duisburg.de X-Trace: a1-hrz.uni-duisburg.de 1087216156 26913 134.91.1.34 (14 Jun 2004 12:29:16 GMT) X-Complaints-To: usenet@news.uni-duisburg.de NNTP-Posting-Date: Mon, 14 Jun 2004 12:29:16 +0000 (UTC) User-Agent: tin/1.5.8-20010221 ("Blue Water") (UNIX) (HP-UX/B.11.00 (9000/800)) Xref: g2news1.google.com comp.lang.ada:1467 Date: 2004-06-14T12:29:16+00:00 List-Id: Robert I. Eachus wrote: : Roland wanted the number of rows to always equal the number of columns : so I would reccommend instead: : : type Go_Board(Size : Board_Size := 19) is private; : ... : private : type Go_Board(Size : Board_Size := 19) is record : Cells: Cell_Array(1..Size, 1..Size); : end record; Yes, sorry. And probably there is a better name than Cell reflecting the positions of stones in the game.