14 Aug
2005
14 Aug
'05
6:44 p.m.
{ This program compiles and runs with Free Pascal. See GPC compile error below. Apparently GPC doesn't line "array of string" although it doesn't choke on the declaration } program Test; var A: array of string; begin SetLength(A, 10); // Compilation fails on previous line: // pubtotex\test.pas:6: undeclared identifier `A' (first use in this routine) A[3] := 'Hello World'; Writeln(A[3]); Readln; end. -- =========================================== Prof. Harley Flanders 3533 Windemere Court Ann Arbor, MI 48105-2867 Home: 734 668 1546 harley@umich.edu ===========================================