mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00
8 lines
173 B
ObjectPascal
8 lines
173 B
ObjectPascal
{$ifdef fpc}{$mode objfpc}{$endif}
|
|
uses sysutils;
|
|
var S:String;
|
|
par:array [0..1] of TVarRec; { array of const here is illegal ! }
|
|
begin
|
|
writeln(format(S, par));
|
|
end.
|