fpc/tests/tbs0005.pp
1998-10-28 10:06:25 +00:00

11 lines
114 B
ObjectPascal

begin
if 1=1 then
begin
Writeln('OK');
end;
if 1<>1 then
begin
Halt(1);
end;
end.