- or download this
bless { hash => {} }, $class;
...
$object->{hash}->{key_inside_that};
- or download this
$object->{hash}{key_inside_that},
$$object{hash}{key_inside_that},
${${$object}{hash}}{key_inside_that}
- or download this
bless \{ hash => \{} }, $class;
...
${$$object->{hash}}->{key_inside_that};
${${${$object}}{hash}}{key_inside_that};
# etcetera...