lama_byterun/regression/x86only/test003.lama
Dmitry Boulytchev 50fc2e9f2a Fixed test003
2020-02-28 18:32:19 +03:00

10 lines
170 B
Text

local lists = [
{},
{1, 2, 3, 4},
{1 : {}, {2, 3}, {4, {5, 6}}},
1 : 2 : 3 : 4 : {}
], i;
for i := 0, i<lists.length, i:=i+1 do
printf ("%s\n", lists[i].string)
od