mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 13:45:58 +02:00
* halt(1) on error
git-svn-id: trunk@16402 -
This commit is contained in:
parent
44178f41b6
commit
6eecf71698
@ -5,11 +5,12 @@ var
|
||||
begin
|
||||
wa := [1..2];
|
||||
ws := [1..3];
|
||||
if (wa <= ws) and (wa <> ws) then writeln('True') else writeln('False');
|
||||
if (wa <= ws) and (wa <> ws) then writeln('True') else begin writeln('False'); halt(1) end;
|
||||
if (wa <= ws) then
|
||||
if (wa <> ws) then writeln('True') else writeln('False');
|
||||
if (wa <= ws) then writeln('True') else writeln('False');
|
||||
if (wa <> ws) then writeln('True') else writeln('False');
|
||||
if (wa <> ws) then writeln('True') else begin writeln('False'); halt(1); end
|
||||
else halt(1);
|
||||
if (wa <= ws) then writeln('True') else begin writeln('False'); halt(1); end;
|
||||
if (wa <> ws) then writeln('True') else begin writeln('False'); halt(1); end;
|
||||
|
||||
end.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user