Help for this page

Select Code to Download


  1. or download this
    my %hash = ( a=>1, b=>2, c=>3);
    my @v = values %hash;  #  e.g. ( 2,   3,   1 )
    my @k = keys   %hash;  #  e.g. ('b', 'c', 'a')