- or download this
use Data::Dumper;
use Tie::IxHash;
...
$data{SomeMoreStuff}{SomeMoreData} = 'x';
print Dumper \%data;
- or download this
%data = (
SomeStuff => {
...
OtherData => 'd'
}
);
- or download this
$VAR1 = {
'SomeStuff' => {
...
'SomeData' => 'a'
}
};
- or download this
$VAR1 = {
'SomeStuff' => {
...
'OtherData' => 'd',
}
};