Mega Code Archive
Categories
/
Perl
/
Array
Use strict with two dimensional array
use strict vars; $array = [ ["A", "E"], ["B", "F", "G"], ["C", "D"], ]; print $array[0][0];