in reply to accessing array through array reference in hash
print "Array length is: ", $#{$hash{'aref'}}+1, "\n"; print "$_\n" for @{$hash{'aref'}}; [download]
print "@{$hash{'aref'}}"; [download]