summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/AbuseFilter/tests/parserTests/list-assignment.t
blob: c055541b816ebbd85dcc628aa54dc57e561be277 (plain)
1
2
3
4
5
6
test_list := [ [1, 2], [3, 4] ];

test_list[1] := 42;
test_list[] := 17;

test_list[0][0] == 1 & test_list[0][1] == 2 & test_list[1] == 42 & test_list[2] == 17