tw2912.pp 279 B

1234567891011121314
  1. { Source provided for Free Pascal Bug Report 2912 }
  2. { Submitted by "Bill Pearce" on 2004-01-19 }
  3. { e-mail: [email protected] }
  4. procedure SetRowCount(n,m : integer);
  5. var
  6. tmp : array of array of string;
  7. begin
  8. SetLength(tmp, n, m);
  9. end;
  10. begin
  11. SetRowCount(10,2);
  12. end.