mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 00:09:32 +02:00
20 lines
235 B
ObjectPascal
20 lines
235 B
ObjectPascal
uses uw3429;
|
|
|
|
var
|
|
ok : byte;
|
|
begin
|
|
if v=7 then
|
|
begin
|
|
ok:=ok or 1;
|
|
writeln('ok1');
|
|
end;
|
|
if v='7' then
|
|
begin
|
|
ok:=ok or 2;
|
|
writeln('ok2');
|
|
end;
|
|
writeln(v);
|
|
if ok<>3 then
|
|
halt(1);
|
|
end.
|