Hi
can't initialize 2 dimensional array:
var ch : array[ 1..2, 1..2 ] of char = ( 'e', 'a', 's', 'y');
should it work?
Thanks, Russ russwhit@mind.net
On Sun, 22 Aug 1999, Russ Whitaker wrote:
can't initialize 2 dimensional array:
var ch : array[ 1..2, 1..2 ] of char = ( 'e', 'a', 's', 'y');
should it work?
Try it as follows:
var ch : array[ 1..2, 1..2 ] of char value ( ('e', 'a'), ('s', 'y') );
Or you can prolly even do it as follows:
var ch : array[ 1..2, 1..2 ] of char value 'easy';
See ya! Orlando Llanes
"Meine Damen und Herren, Elvis hat soeben das Gebaeude verlassen!"
"Look out fo' flyeeng feet" O__/ a010111t@bc.seflin.org /|____. O <__. /> / \ ____________|_________ http://ourworld.compuserve.com/homepages/Monkey414