[fpc-pascal] Partially initializing array of records

2011-07-19 Thread Clay Stuart
Hello Everyone: I've got an array of records that looks something like this: type node = record foo : array[1..10] of integer; bar : array[1..10] of integer; end var graph : array[1..5] of node; begin... However, the arrays hold different amounts of nu

Re: [fpc-pascal] Partially initializing array of records

2011-07-19 Thread Clay Stuart
e> wrote: > Am Tuesday 19 July 2011 19:44:17 schrieb Clay Stuart: > > Hello Everyone: > > > > I've got an array of records that looks something like this: > > > > type > > node = record > > foo : array[1..10] of integer;

Re: [fpc-pascal] Partially initializing array of records

2011-07-19 Thread Clay Stuart
Ok. Thanks everyone. Clay On Tue, Jul 19, 2011 at 2:30 PM, Martin wrote: > On 19/07/2011 19:05, Clay Stuart wrote: > >> How do people initialize large amounts of information in practice? Do >> they just read in files and convert them over dynamically? >> > &g