mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 01:08:07 +02:00
13 lines
149 B
ObjectPascal
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.
|
|
|