Hello Everyone:<div><br></div><div>I've got an array of records that looks something like this:</div><div><br></div><div>type</div><div>      node = record</div><div>            foo : array[1..10] of integer;</div><div>

            bar : array[1..10] of integer;</div><div>      end</div><div><br></div><div>var</div><div>     graph : array[1..5] of node;</div><div><br></div><div>begin...</div><div><br></div><div><br></div><div>However, the arrays hold different amounts of numbers.  So node[1].foo might hold 5 numbers while node[2].foo might hold only 2.</div>

<div><br></div><div>My Question...</div><div>Is there a way to initialize these numbers somehow.  It seems the compiler won't allow me to partly fill the arrays.  If I use them, it appears I have to use them all the way.</div>

<div><br></div><div>Thank you in advance,</div><div>Clay</div>