- or download this
use warnings;
use strict;
...
push @{$arr[1][1]}, 222;
Dump (\@arr);
- or download this
$ARRAY1 = [
[
...
]
]
];
- or download this
use warnings;
use strict;
...
push @{$arr{'two'}}, 222;
Dump (\%arr);
- or download this
$HASH1 = {
one => [
...
222
]
};