9. Generic dereferencing syntax
my
$arrayref
= [
'Tom'
,
'Dick'
,
'Larry'
];
say
$$arrayref[
2
]
;
say
$arrayref->[
2
]
;