Help for this page
$hash{'name'} = 1; $hash{0} = 2; ... print($hash{0}); # prints: 2 print($hash{1}); # prints: 4 print($hash{'1'}); # prints: 4