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,9037b89465cfa891,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-02-19 20:57:28 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: cp98ak@cosc.brocku.ca (Chris) Newsgroups: comp.lang.ada Subject: dynamic arrays in a record ? Date: 19 Feb 2003 20:57:27 -0800 Organization: http://groups.google.com/ Message-ID: NNTP-Posting-Host: 139.57.232.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1045717048 20404 127.0.0.1 (20 Feb 2003 04:57:28 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 20 Feb 2003 04:57:28 GMT Xref: archiver1.google.com comp.lang.ada:34250 Date: 2003-02-20T04:57:28+00:00 List-Id: Is there any easy way to put a dynamic array in a record? I plan to create the array elsewhere based on user input, but I would like a "placeholder" in the record for it... ...or is this craziness altogether? SNIP------------------------------------ type board_array is array (positive range <>, positive range <>) of integer range -1..1; type board is record aboard: board_array; -- this is junk! userscore : integer; compscore : integer; end record; ----------------------------------------