Initial commit
This commit is contained in:
11
tests/if_condition.eln
Normal file
11
tests/if_condition.eln
Normal file
@ -0,0 +1,11 @@
|
||||
begin
|
||||
if True then writei(8);
|
||||
if False then
|
||||
begin
|
||||
writei(5);
|
||||
writei(5);
|
||||
writei(5)
|
||||
end;
|
||||
if 1 < 2 then writei(9);
|
||||
if 1 > 2 then writei(10)
|
||||
end.
|
Reference in New Issue
Block a user