tw1286.pp 173 B

1234567
  1. {$ifdef fpc}{$mode objfpc}{$endif}
  2. uses sysutils;
  3. var S:String;
  4. par:array [0..1] of TVarRec; { array of const here is illegal ! }
  5. begin
  6. writeln(format(S, par));
  7. end.