mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-10 05:48:59 +02:00
13 lines
123 B
ObjectPascal
13 lines
123 B
ObjectPascal
|
|
var
|
|
a : cardinal;
|
|
b : longint;
|
|
begin
|
|
a := 0;
|
|
b := -1;
|
|
if a > b then
|
|
writeln ('OK')
|
|
else
|
|
halt(1);
|
|
end.
|