mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 16:13:48 +02:00
11 lines
114 B
ObjectPascal
11 lines
114 B
ObjectPascal
begin
|
|
if 1=1 then
|
|
begin
|
|
Writeln('OK');
|
|
end;
|
|
if 1<>1 then
|
|
begin
|
|
Halt(1);
|
|
end;
|
|
end.
|