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

8 lines
100 B
Text

local n = 2, k = 10;
{local res = 1;
while k > 0 do
res := res * n;
k := k - 1
od;
write(res)}