lama_byterun/regression/x86only/test003.expr

10 lines
159 B
Text
Raw Normal View History

2019-03-07 21:12:43 +03:00
lists := [
{},
{1, 2, 3, 4},
{{1}, {2, 3}, {4, {5, 6}}},
1 : 2 : 3 : 4 : {}
];
for i := 0, i<lists.length, i:=i+1 do
printf ("%s\n", lists[i].string)
od