mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 17:48:53 +02:00
14 lines
129 B
ObjectPascal
14 lines
129 B
ObjectPascal
|
|
{$R+}
|
|
var
|
|
a : cardinal;
|
|
b : longint;
|
|
begin
|
|
a := 0;
|
|
b := -1;
|
|
if a > b then
|
|
writeln ('OK')
|
|
else
|
|
halt(1);
|
|
end.
|