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,FREEMAIL_FROM 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!fu-berlin.de!uni-berlin.de!not-for-mail From: Roland Illig Newsgroups: comp.lang.ada Subject: Re: [newbie] simple(?) data structures Date: Thu, 17 Jun 2004 01:23:37 +0200 Message-ID: <2jc33qFv3sitU1@uni-berlin.de> References: <2j1e30Fsrg8vU1@uni-berlin.de> <2jao1qFvj2rgU1@uni-berlin.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de s67vZb5ekqYCxPtKDJSTMwjAA6IZaimx8Lm4L2RWkTY8bewD4= User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6) Gecko/20040528 Debian/1.6-7 X-Accept-Language: de-de, de, en-us, en In-Reply-To: Xref: g2news1.google.com comp.lang.ada:1592 Date: 2004-06-17T01:23:37+02:00 List-Id: Georg Bauhaus wrote: > Roland Illig wrote: > > : type Stone_Array_Access is access Stone_Array; > > If I understand correctly, you will have no more than > 19 x 19 lines, right? So, > > [...] > > Any particular reason why you want to use a pointer? * I'm not sure what the maximum size will be. * I've been programming in C for a long time. * I like the controlled objects. * It only allocates as much memory as necessary. Well, I'm not sure if the Go_Board will ever be in action, it's just for learning Ada. Roland