mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-04 19:18:35 +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.
|