fpc/tests/tbs/tb0652.pp
2018-09-27 20:24:52 +00:00

13 lines
149 B
ObjectPascal

const
w : dword = 123;
begin
if (w<=1) and (w>=10) then
halt(1);
if (w>=1) and (w<=1000) then
writeln('ok')
else
halt(1);
end.