Help for this page

Select Code to Download


  1. or download this
    # given a hash:
    my %hash = (one => 1, two => 2);
    ...
    
    # is equivalent to:
    print $hash{"one"}, $hash{"two"};