- hash holding the values of address of a 2 D array
- my %hash = (
- foo => [[1, 2], [3, 4]],
- bar => [[5, 6], [7, 8]]
- );
- $array_element_1 = ['row 1 column 1', 'row 1 column 2'];
- $array_element_2 = ['row 2 column 1', 'row 2 column 2'];
- $array_reference = [$array_element_1, $array_element_2];
- %hash = ( 'key' => $array_reference);