Help for this page
@arry = ( $one, $two, $three );
@arry = ( \$one, \$two, \$three ); ${$arry[1]}++; # Increment the referent's value. print "two is $two\n"; print '$arry[1] is: ', $arry[1], "\n"; print '${$arry[1]} is: ', ${$arry[1]}, "\n";