mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-13 17:27:20 +00:00
7 lines
167 B
Perl
7 lines
167 B
Perl
|
test_array := [ [1, 2], [3, 4] ];
|
||
|
|
||
|
test_array[1] := 42;
|
||
|
test_array[] := 17;
|
||
|
|
||
|
test_array[0][0] == 1 & test_array[0][1] == 2 & test_array[1] == 42 & test_array[2] == 17
|