lama_byterun/lama-compiler/regression/test010.lama

17 lines
170 B
Text

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