+ missing halt instructions

This commit is contained in:
florian 2022-11-23 19:01:32 +01:00
parent 68b092a466
commit e7fda48327
2 changed files with 8 additions and 2 deletions

View File

@ -26,5 +26,8 @@ begin
ok := false;
end;
end;
if ok then writeln('ok');
if ok then
writeln('ok')
else
halt(1);
end.

View File

@ -26,5 +26,8 @@ begin
ok := false;
end;
end;
if ok then writeln('ok');
if ok then
writeln('ok')
else
halt(1);
end.