mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 18:19:24 +02:00
13 lines
168 B
ObjectPascal
13 lines
168 B
ObjectPascal
{ Old file: tbs0122.pp }
|
|
{ exit() gives a warning that the result is not set OK 0.99.6 (FK) }
|
|
|
|
|
|
function f:longint;
|
|
begin
|
|
exit(1);
|
|
end;
|
|
|
|
begin
|
|
writeln(f);
|
|
end.
|