lama_byterun/regression/test010.expr
2019-09-29 02:47:07 +03:00

20 lines
184 B
Text

local i, s;
i := 0;
s := 0;
while i < 100
do
local j = 0;
while j < 100
do
s := s + j;
j := j + 1
od;
s := s + i;
i := i + 1
od;
write (s)