'use strict' with two dimensional array : Multidimensional Arrays « Array « Perl
- Perl
- Array
- Multidimensional Arrays
'use strict' with two dimensional array
use strict vars;
$array = [
["A", "E"],
["B", "F", "G"],
["C", "D"],
];
print $array[0][0];
Related examples in the same category