mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 00:38:06 +02:00
11 lines
92 B
ObjectPascal
11 lines
92 B
ObjectPascal
{$mode delphi}
|
|
|
|
function T: Integer;
|
|
begin
|
|
for Result:=0 to 10 do ;
|
|
end;
|
|
|
|
begin
|
|
T;
|
|
end.
|