Initial commit
This commit is contained in:
10
tests/print_in_loop.eln
Normal file
10
tests/print_in_loop.eln
Normal file
@ -0,0 +1,10 @@
|
||||
var i: Int;
|
||||
begin
|
||||
i := 1;
|
||||
|
||||
while i < 6 do
|
||||
begin
|
||||
writei(i);
|
||||
i := i + 1
|
||||
end;
|
||||
end.
|
Reference in New Issue
Block a user