- or download this
$our_hash = {
'this' => 'that',
'foo' => ['bar', 'and', 'something', 'else']
};
- or download this
$$our_hash{'somekey'} = {
'foo' => $$our_hash{'foo'}
};
- or download this
$our_hash = {
'this' => 'that',
'foo' => [],
...
'foo' => ['bar', 'and', 'something', 'else']
}
};