http://qs321.pair.com?node_id=674252


in reply to Arrays and hashes only with references

I code similarly to this but instead of:
$value = $$arrayref[2];
I prefer:
$value = $arrayref->[2];
The beauty of that notation is that it doesn't treat the outer level of a nest any differently.