Help for this page

Select Code to Download


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