mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 06:19:32 +02:00
14 lines
129 B
ObjectPascal
14 lines
129 B
ObjectPascal
uses
|
|
erroru;
|
|
|
|
begin
|
|
if 1=1 then
|
|
begin
|
|
Writeln('OK');
|
|
end;
|
|
if 1<>1 then
|
|
begin
|
|
Error;
|
|
end;
|
|
end.
|